summaryrefslogtreecommitdiffstats
path: root/testsuites/aclocal (follow)
Commit message (Collapse)AuthorAgeFilesLines
* tools: Remove packhexSebastian Huber2018-06-151-4/+0
| | | | | | | | | | | | All tools should be removed from the RTEMS source repository at some point in time. Tools with a BSD-style license will be moved to the RTEMS tools repository. Unfortunately, this tool has no license information. Remove all uses of this tool from the code base. Users of HEX files should consider to use ELF instead. Close #3379.
* tools: Remove rtems-bin2cSebastian Huber2018-06-141-1/+1
| | | | | | This tool is now included in the RTEMS tools repository. Close #3380.
* tests: Move rtems-test-check.pySebastian Huber2018-05-021-1/+1
| | | | Remove shell script variant.
* bsps: Move make/custom/* files to bspsSebastian Huber2018-04-231-1/+1
| | | | | | | | | Adjust various build files. Remove automatic generation of the c/src/lib/libbsp/*/acinclude.m4 files from bootstrap script. This patch is a part of the BSP source reorganization. Update #3285.
* bsps: Move startup files to bspsSebastian Huber2018-04-202-3/+3
| | | | | | | | Adjust build support files to new directory layout. This patch is a part of the BSP source reorganization. Update #3285.
* Generate an error if a BSP in the --enable-rtemsbsp list is not validChris Johns2018-04-111-14/+0
| | | | | | | Also generate an error if the architecure does not match the --target architecture given to configure's command line. Close #2641.
* testsuite: Autoconf test check support.Chris Johns2018-04-101-0/+31
| | | | | | | | | The autoconf function checks the state of a test for the BSP and controls the building of the test. This change is part of the testsuite Makefile.am reorganisation. Update #3382
* Remove make preinstallChris Johns2018-01-257-11/+89
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* tests: Fix canonical-target-name.m4Sebastian Huber2018-01-021-0/+2
| | | | Update #3109.
* Change RTEMS_API from 5.0 to 5Sebastian Huber2017-11-131-1/+1
| | | | | | | This fixes the legacy Makefile based build system which expects RTEMS_API to be identical to the tool chain version. Update #3220.
* Upgrade to 5.0.0Sebastian Huber2017-11-091-2/+2
| | | | | | | 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.
* Fix warnings for using C/ObjC specific GCC flags with C++Joel Sherrill2017-10-111-0/+6
| | | | Closes #3181.
* build-system: Always enable C++ if the compiler is present.Chris Johns2016-08-112-19/+25
| | | | | | | | | | | 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.
* Upgrade to 4.11.99.0Sebastian Huber2015-09-111-2/+2
|
* Add -std=gnu++11 to CXXFLAGS if SMP is enabledSebastian Huber2014-09-081-1/+6
| | | | | This is necessary to use the <atomic> header file used for the atomic operations.
* Add missing )Ralf Corsépius2012-05-181-1/+1
|
* Remove references to configure.in.Ralf Corsépius2012-05-181-1/+1
|
* Remove obsolete reference to posix bsp.Ralf Corsépius2012-05-181-1/+0
|
* Remove stray dnl.Ralf Corsépius2012-05-181-2/+0
|
* Remove All CVS Id Strings Possible Using a ScriptJoel Sherrill2012-05-1114-29/+0
| | | | | | | | | | | | 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.
* Revert: Remove CVS IdsJoel Sherrill2012-05-0714-0/+35
| | | | | See http://www.rtems.org/pipermail/rtems-devel/2012-May/001006.html for details.
* Remove CVS-Ids.Ralf Corsépius2012-05-0414-35/+0
|
* 2011-03-04 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2011-03-043-3/+3
| | | | | * aclocal/env-rtemsbsp.m4, aclocal/rtems-top.m4, aclocal/version.m4: Rename RTEMS_API into _RTEMS_API.
* 2011-02-25 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2011-02-251-8/+10
| | | | | | | * 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*".
* 2010-10-01 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2010-10-011-2/+2
| | | | | PR 1708/build: * aclocal/check-cpuopts.m4: Fix m4-quoting.
* 2010-09-23 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2010-09-231-2/+2
| | | | * aclocal/check-cpuopts.m4: Add AC_LANG_SOURCE.
* 2010-07-27 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill2010-07-271-0/+3
| | | | | PR 1532/testing * aclocal/project-root.m4: Add initial tests for untar capabilities.
* 2010-06-07 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2010-06-071-2/+2
| | | | | * aclocal/version.m4: Bump RTEMS_API to 4.11. Bump _RTEMS_VERSION to 4.10.99.0.
* 2009-10-17 Ralf Corsepius <ralf.corsepius@rtems.org>Ralf Corsepius2009-10-171-1/+2
| | | | * aclocal/check-custom-bsp.m4: Fix up AC_REQUIRES.
* 2009-10-16 Ralf Corsepius <ralf.corsepius@rtems.org>Ralf Corsepius2009-10-161-3/+0
| | | | * aclocal/canonical-target-name.m4: Remove RTEMS_HOST (unused).
* Remove posix/unix simulator.Ralf Corsepius2009-10-141-17/+0
|
* 2009-04-03 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2009-04-031-0/+4
| | | | | * aclocal/prog-cc.m4: Preset ac_cv_exeext=.exe for *-rtems* toolchains.
* Remove tic4x.Ralf Corsepius2008-12-221-4/+0
|
* 2008-09-22 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2008-09-221-2/+2
| | | | | * aclocal/version.m4: Bump RTEMS_API to 4.10. Bump _RTEMS_VERSION to 4.9.99.0.
* Require AC_DISABLE_OPTION_CHECKING. AC_PREREQ(2.62).Ralf Corsepius2008-07-021-0/+4
|
* s/AC_HELP/AS_HELP/.Ralf Corsepius2008-02-201-1/+1
|
* 2007-09-21 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2007-09-211-2/+2
| | | | | * aclocal/version.m4: Bump RTEMS_API to 4.9. Bump RTEMS_VERSION to 4.8.99.0.
* Upgrade to 4.7.99.2Joel Sherrill2007-08-071-1/+1
|
* Upgrade to 4.7.99.1Joel Sherrill2007-03-131-1/+1
|
* Revert to version 4.7.99-0Ralf Corsepius2007-02-221-1/+1
|
* Testing: Upgrade to 4.7.99.1Ralf Corsepius2007-02-221-1/+1
|
* 2007-02-11 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2007-02-111-1/+1
| | | | | * aclocal/check-cpuopts.m4: Check rtems/system.h instead of rtems/score/cpuopts.h.
* 2006-10-18 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2006-10-182-2/+2
| | | | | * aclocal/rtems-top.m4: Remove RTEMS_API. * aclocal/version.m4: Add RTEMS_API. Bump RTEMS_API to 4.8.
* 2006-10-17 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2006-10-171-0/+1
| | | | * aclocal/prog-cxx.m4: Add AC_PROG_CXXCPP.
* 2006-10-17 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2006-10-171-1/+1
| | | | * aclocal/version.m4: Bump version to 4.7.99.0.
* 2006-04-18 Joel Sherrill <joel@OARcorp.com>Joel Sherrill2006-04-181-1/+1
| | | | * aclocal/version.m4: Updated to rtems-4.6.99.3.
* 2005-11-22 Ralf Corsepius <ralf.corsepius@rtems.org>Ralf Corsepius2005-11-221-19/+0
| | | | * aclocal/enable-bare.m4: Remove (Unused).
* 2005-11-22 Ralf Corsepius <ralf.corsepius@rtems.org>Ralf Corsepius2005-11-221-4/+0
| | | | | | * aclocal/env-rtemsbsp.m4: Remove RTEMS_ENABLE_BARE, BARE_CPU_CFLAGS, BARE_CPU_MODEL.
* 2005-11-13 Ralf Corsepius <ralf.corsepius@rtems.org>Ralf Corsepius2005-11-131-4/+1
| | | | | * aclocal/env-rtemsbsp.m4: Remove includedir. Remove libdir. Set rtems_testsdir to $libdir/rtems-4.7/tests.
* 2005-11-13 Ralf Corsepius <ralf.corsepius@rtems.org>Ralf Corsepius2005-11-131-1/+0
| | | | * aclocal/env-rtemsbsp.m4: Remove RTEMS_CPU_MODEL.