summaryrefslogtreecommitdiffstats
path: root/cpukit/configure.ac (unfollow)
Commit message (Collapse)AuthorFilesLines
2017-01-13configure: Remove __RTEMS_DO_NOT_INLINE_THREAD_*Sebastian Huber1-6/+0
2017-01-13configure: Remove __RTEMS_HAVE_DECL_SIGALTSTACK__Sebastian Huber1-10/+0
2017-01-13configure: Remove HAVE_STRUCT__THREAD_QUEUE_QUEUESebastian Huber1-1/+0
2017-01-13configure: Remove envlock supportSebastian Huber1-3/+0
This is provided by Newlib itself.
2017-01-13configure: Remove SIZEOF_PTHREAD_SPINLOCK_TSebastian Huber1-1/+0
2017-01-13configure: Remove HAVE_THREADS_H supportSebastian Huber1-4/+1
2017-01-13configure: Remove HAVE_SEMAPHORE_H supportSebastian Huber1-4/+1
2017-01-13configure: Add RTEMS_TOOL_CHAIN_ERRORSebastian Huber1-14/+13
Stop the build with a common error message in case the tool chain is seriously out of date.
2017-01-11Remove obsolete __RTEMS_HAVE_SYS_CPUSET_H__Joel Sherrill1-7/+0
2016-11-29cpukit: Add libdebugger, a remote debugger agent for GDB.Chris Johns1-0/+12
2016-11-23posix: Add self-contained pthread spinlockSebastian Huber1-0/+1
Turn pthread_spinlock_t into a self-contained object. On uni-processor configurations, interrupts are disabled in the lock/trylock operations and the previous interrupt status is restored in the corresponding unlock operations. On SMP configurations, a ticket lock is a acquired and released in addition. The self-contained pthread_spinlock_t object is defined by Newlib in <sys/_pthreadtypes.h>. typedef struct { struct _Ticket_lock_Control _lock; __uint32_t _interrupt_state; } pthread_spinlock_t; This implementation is simple and efficient. However, this test case of the Linux Test Project would fail due to call of printf() and sleep() during spin lock ownership: https://github.com/linux-test-project/ltp/blob/master/testcases/open_posix_testsuite/conformance/interfaces/pthread_spin_lock/1-2.c There is only limited support for profiling on SMP configurations. Delete CORE spinlock implementation. Update #2674.
2016-08-11build-system: Always enable C++ if the compiler is present.Chris Johns1-2/+4
We always build a C++ compiler and building with C++ does not effect RTEMS or the runtime. This patch always enabled the support. There is no need to manually enable it any more. You can disable C++ with '--disable-cxx'. If an architecture does not have a C++ compiler support is automatically disabled.
2016-05-02score: __RTEMS_DO_NOT_INLINE_CORE_MUTEX_SEIZE__Sebastian Huber1-6/+0
Delete __RTEMS_DO_NOT_INLINE_CORE_MUTEX_SEIZE__ as a preparation to restructure the CORE mutex variants and reduce the branch complexity.
2016-05-02score: Delete __RTEMS_STRICT_ORDER_MUTEX__Sebastian Huber1-6/+0
Remove support for strict order mutexes. Close #2124.
2016-01-19Remove AVR portJoel Sherrill1-1/+0
closes #2443.
2016-01-04Remove H8300 portJoel Sherrill1-4/+0
updates #2452.
2016-01-04Remove M32R architectureJoel Sherrill1-3/+1
updates #2446.
2015-11-25Require __getreent()Sebastian Huber1-0/+4
This function is used by Newlib since 2013-07-09 (Git commit 9b51cd8c6b9cdd067d9648a7ab952884019c56a5).
2015-11-24posix: Require struct _pthread_cleanup_contextSebastian Huber1-1/+1
This structure is available in Newlib since 2013-11-29 (Git commit a534dfd26e765047621acd0eda656ded886e7108).
2015-10-16libfdt: Initial importSebastian Huber1-0/+1
Import from: git://git.kernel.org/pub/scm/utils/dtc/dtc.git Commit: 604e61e081e3c6c8fa1a8189c71cb3908a5bbc1e Date: 2015-09-29T09:09:08Z
2015-10-14libstdthreads: Add C11 threadsSebastian Huber1-0/+4
2015-07-30score: Add thread queue for self-contained objectsSebastian Huber1-0/+1
2015-06-15Remove use ticks for statistics configure option.Joel Sherrill1-5/+0
This was obsolete and broken based upon recent time keeping changes. Thie build option was previously enabled by adding USE_TICKS_FOR_STATISTICS=1 to the configure command line. This propagated into the code as preprocessor conditionals using the __RTEMS_USE_TICKS_FOR_STATISTICS__ conditional.
2015-05-21cpukit: Add Epiphany architecture port v4Hesham ALMatary1-0/+1
2015-04-17DRVMGR: only build on SPARC platformDaniel Hellstrom1-0/+12
2015-04-17DRVMGR: added driver manager to cpukit/libdrvmgrDaniel Hellstrom1-0/+7
2015-04-17LIBPCI: added PCI layer to cpukit/libpciDaniel Hellstrom1-0/+12
2015-03-10posix: Install <semaphore.h> only if not providedSebastian Huber1-0/+3
2015-03-06Temporarily disable libdl for h8300Joel Sherrill1-1/+4
The h8300 gets a linking error for the dl0* tests. This temporarily disables libdl until that can be investigated. updates 2284.
2015-03-06Temporarily disable libdl for lm32Joel Sherrill1-1/+4
There is a GCC ICE when building libdl. This temporarily disables building libdl until that is resolved. updates 2283.
2015-03-06Temporarily disable libdl for v850Joel Sherrill1-1/+4
There is an issue linking dl0* which has not been resolved. This issue is being tracked but is not considered a release blocker. This patch is a workaround which disables libdl for the v850 until the ticket is resolved. updates 2260.
2015-03-06Temporarily disable libdl for bfinJoel Sherrill1-1/+4
There is an issue linking dl0* which has not been resolved. This issue is being tracked but is not considered a release blocker. This patch is a workaround which disables libdl for the bfin until the ticket is resolved. updates 2252.
2015-03-05libmd: Disable SHA modules for m32cSebastian Huber1-0/+10
Close #2219.
2014-12-05Update bug report URLSebastian Huber1-1/+1
2014-11-20Add crypt_r(), etc.Sebastian Huber1-0/+1
Add crypt_add_format(), crypt_r(), crypt_md5_r(), crypt_sha256_r() and crypt_sha512_r().
2014-11-20Add RTEMS port of Linux I2C user-space APISebastian Huber1-0/+1
2014-11-06libdl: Disable building libdl for the NIOS2. No relocation support.Chris Johns1-1/+1
This should have been added.
2014-10-31cpukit: Add libdl with the Runtime Loader (RTL) code.Chris Johns1-2/+16
This is a merge of the RTL project.
2014-08-20Add configuration to detect toolset has sigaltstack() prototypeJoel Sherrill1-0/+12
2014-08-12Add support for OpenRISC - Fixed issuesHesham ALMatary1-0/+1
This work is based on the old or32 port (that has been removed back in 2005) authored by Chris Ziomkowski. The patch includes the basic functions every port should implement like: context switch, exception handling, OpenRISC ABI and machine definitions and configurations.
2014-07-15Thread Queue Priority Discipline Reimplemented with RBTreeJoel Sherrill1-6/+0
2014-03-14score: Add --enable-profiling configure optionSebastian Huber1-0/+6
2014-02-17cpukit: Correct bug in check of affinity support in newlib.Jennifer Averett1-6/+22
2014-02-17Require presence of <stdatomic.h> for SMP supportSebastian Huber1-7/+3
2013-12-13cpukit/configure.ac: Probe for SMP affinity methodsJoel Sherrill1-0/+8
2013-12-02posix: Use cleanup contexts on the stackSebastian Huber1-0/+1
Provide support for latest Newlib <pthread.h> change. The cleanup contexts are stored on the thread stack. This is conformant with the POSIX requirements for the pthread_cleanup_push() and pthread_cleanup_pop() statement pair. Passing an invalid pointer as the routine to pthread_cleanup_push() is now a usage error and the behaviour is undefined.
2013-11-27add --enable-paravirt in cpukit configure scriptsPhilipp Eppelt1-0/+6
2013-07-26libmisc: Provide libutf8proc conditionallySebastian Huber1-0/+4
2013-07-17stdatomic.h support check when configureWeiY1-0/+7
2013-05-01Clear the atomic conditional compilation.WeiY1-7/+0