summaryrefslogtreecommitdiff
path: root/cpukit/aclocal (follow)
AgeCommit message (Collapse)Author
2018-12-14build: Remove ampolish3Sebastian Huber
Update #3254.
2018-11-12m32c: Remove this targetSebastian Huber
Update #3599.
2018-10-30config: Fix check networkingSebastian Huber
This Autoconf macro used cache variables which are not longer present. Update #3409.
2018-10-18check-networking.m4: Disable legacy stack for x86_64 and epiphanyJoel Sherrill
x86_64 is 64-bits and too new for the legacy stack to support. epiphany is a small target and cannot compile the legacy (or new) stack.
2018-06-28build: Enable RISC-V SMP buildSebastian Huber
Update #3433.
2018-01-25Remove make preinstallChris Johns
A speciality of the RTEMS build system was the make preinstall step. It copied header files from arbitrary locations into the build tree. The header files were included via the -Bsome/build/tree/path GCC command line option. This has at least seven problems: * The make preinstall step itself needs time and disk space. * Errors in header files show up in the build tree copy. This makes it hard for editors to open the right file to fix the error. * There is no clear relationship between source and build tree header files. This makes an audit of the build process difficult. * The visibility of all header files in the build tree makes it difficult to enforce API barriers. For example it is discouraged to use BSP-specifics in the cpukit. * An introduction of a new build system is difficult. * Include paths specified by the -B option are system headers. This may suppress warnings. * The parallel build had sporadic failures on some hosts. This patch removes the make preinstall step. All installed header files are moved to dedicated include directories in the source tree. Let @RTEMS_CPU@ be the target architecture, e.g. arm, powerpc, sparc, etc. Let @RTEMS_BSP_FAMILIY@ be a BSP family base directory, e.g. erc32, imx, qoriq, etc. The new cpukit include directories are: * cpukit/include * cpukit/score/cpu/@RTEMS_CPU@/include * cpukit/libnetworking The new BSP include directories are: * bsps/include * bsps/@RTEMS_CPU@/include * bsps/@RTEMS_CPU@/@RTEMS_BSP_FAMILIY@/include There are build tree include directories for generated files. The include directory order favours the most general header file, e.g. it is not possible to override general header files via the include path order. The "bootstrap -p" option was removed. The new "bootstrap -H" option should be used to regenerate the "headers.am" files. Update #3254.
2017-11-13Change RTEMS_API from 5.0 to 5Sebastian Huber
This fixes the legacy Makefile based build system which expects RTEMS_API to be identical to the tool chain version. Update #3220.
2017-11-09Upgrade to 5.0.0Sebastian Huber
Tool name will be "rtems5", e.g. arm-rtems5-gcc. Next release will 5.1.0. Branch version after release will be 5.1.1. Next master will be 6.0.0.
2017-11-01cpukit: RISC-V - make riscv32 code work for riscv64 - v2Hesham Almatary
* Use #ifdefs for 32/64 bit code * Use unsigned long which is 32-bit on riscv32 and 64-bit on riscv64 (register size) * Move the code to a new shared riscv folder to be shared between riscv32 and riscv64 * Rename RTEMS_CPU extracted from command line to shared riscv target s/riscv*/riscv Update #3109
2016-01-19Remove AVR portJoel Sherrill
closes #2443.
2016-01-04Remove H8300 portJoel Sherrill
updates #2452.
2015-09-11 Upgrade to 4.11.99.0Sebastian Huber
2015-04-17DRVMGR: added driver manager to cpukit/libdrvmgrDaniel Hellstrom
2015-03-06Always disable networking for h8300Joel Sherrill
2014-05-08configure: Paravirtualization for all targetsSebastian Huber
Virtual machines with paravirtualization exist not only on x86.
2014-03-14score: Add --enable-profiling configure optionSebastian Huber
2014-02-17Require presence of <stdatomic.h> for SMP supportSebastian Huber
2013-11-27add --enable-paravirt in cpukit configure scriptsPhilipp Eppelt
2013-08-20add compare_and_swap check in check-atomic.m4WeiY
2013-07-17stdatomic.h support check when configureWeiY
2013-06-12configure: DocumentationSebastian Huber
2013-05-31smp: Add ARM supportSebastian Huber
2013-05-31smp: Add PowerPC supportSebastian Huber
2013-02-14New.Ralf Corsépius
2012-05-11cpukit/aclocal - Fix one mistake by scriptJoel Sherrill
2012-05-11Remove All CVS Id Strings Possible Using a ScriptJoel Sherrill
Script does what is expected and tries to do it as smartly as possible. + remove occurrences of two blank comment lines next to each other after Id string line removed. + remove entire comment blocks which only exited to contain CVS Ids + If the processing left a blank line at the top of a file, it was removed.
2012-05-07Revert: Remove CVS IdsJoel Sherrill
See http://www.rtems.org/pipermail/rtems-devel/2012-May/001006.html for details.
2012-05-04Remove CVS-Ids.Ralf Corsépius
2012-01-26Revert "Google C++ Testing Framework 1.6.0."Sebastian Huber
This reverts commit 9bf3a868655f260c2fa6cbcab16f0218cf53e5b8.
2012-01-23Google C++ Testing Framework 1.6.0.Sebastian Huber
2011-12-012011-12-01 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius
* aclocal/check-smp.m4: Fix bogus log message.
2011-03-162011-03-16 Jennifer Averett <jennifer.averett@OARcorp.com>Joel Sherrill
PR 1729/cpukit * configure.ac, sapi/include/confdefs.h, sapi/src/exinit.c, score/Makefile.am, score/preinstall.am, score/cpu/i386/rtems/score/cpu.h, score/cpu/sparc/cpu_asm.S, score/cpu/sparc/rtems/score/cpu.h, score/include/rtems/score/basedefs.h, score/include/rtems/score/context.h, score/include/rtems/score/percpu.h, score/src/percpu.c, score/src/thread.c, score/src/threadcreateidle.c: Add next step in SMP support. This adds an allocated array of the Per_CPU structures to support multiple cpus vs a single instance of the structure which is still used if SMP support is disabled. Configuration support is also added to explicitly enable or disable SMP. But SMP can only be enabled for the CPUs which will support it initially -- SPARC and i386. With the stub BSP support, a BSP can be run as a single core SMP system from an RTEMS data structure standpoint. * aclocal/check-smp.m4, aclocal/enable-smp.m4, score/include/rtems/bspsmp.h, score/include/rtems/score/smplock.h, score/src/smp.c, score/src/smplock.c: New files.
2011-03-042011-03-04 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius
* aclocal/rtems-top.m4, aclocal/version.m4: Rename RTEMS_API into _RTEMS_API.
2011-02-252011-02-25 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius
* aclocal/canonical-target-name.m4: Stop pretending no_cpu* was buildable. Derive RTEMS_CPU from "$host_cpu". Error out if "$host" doesn't match "*-*-rtems*".
2011-02-252011-02-25 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius
* aclocal/check-networking.m4, aclocal/check-posix.m4: Rebase check on "$host".
2010-10-082010-10-08 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius
* aclocal/check-func.m4: Linearize checks. Add missing $2 to AC_CHECK_DECL.
2010-08-032010-08-03 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius
* aclocal/check-func.m4: New.
2010-06-17Remove.Ralf Corsepius
2010-06-09Remove.Ralf Corsepius
2010-06-09Remove.Ralf Corsepius
2010-06-072010-06-07 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius
* aclocal/version.m4: Bump RTEMS_API to 4.11. Bump _RTEMS_VERSION to 4.10.99.0.
2010-04-292010-04-29 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius
* aclocal/enable-itron.m4, aclocal/check-itron.m4: Replace RTEMS_HAS_ITRON_API with enable_itron.
2010-04-292010-04-29 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius
* aclocal/enable-itron.m4: Cosmetics.
2010-04-29New.Ralf Corsepius
2010-04-13Add RTEMS_CHECK_GCC_PRINTF_LD_OFF_T, RTEMS_CHECK_GCC_PRINTF_LLD_OFF_T.Ralf Corsepius
2009-11-192009-11-19 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius
* aclocal/check-networking.m4: Do NOT disable networking for the avr and the m32c.
2009-10-30New.Ralf Corsepius
2009-10-23Remove RTEMS_CFLAGS.Ralf Corsepius
Rework CFLAGS setup.
2009-10-142009-10-14 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius
* aclocal/sysv-ipc.m4: Remove (unused).
2009-10-14Remove unix/posix.Ralf Corsepius