summaryrefslogtreecommitdiffstats
path: root/testsuites/samples/configure.ac (follow)
Commit message (Collapse)AuthorAgeFilesLines
* build: Remove old build systemSebastian Huber2021-09-211-56/+0
| | | | | Close #3250. Close #4081.
* tests: Remove configure feature checksSebastian Huber2018-05-021-26/+1
| | | | Update #3409.
* configure: Add subdir-objects to all automake flags.Chris Johns2018-04-111-1/+1
| | | | | | | | | | | This option silences warning with automake-1.16.1 allowing us to upgrade to that version. This change has been tested with automake-1.12.6 and automake-1.16.1. It seems version 1.16.1 configures slower than 1.12.6 for the same source and BSP. The newer versions is 6 second slower. Close #3387.
* testsuite/samples: Merged nested Makefile.am files into one Makefile.amChris Johns2018-04-101-20/+19
| | | | | | This change is part of the testsuite Makefile.am reorganization. Update #3382
* Remove make preinstallChris Johns2018-01-251-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* testsuite: Add a common test configuration. Fix configure.ac and Makefile.am ↵Chris Johns2017-04-041-9/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | errors. - Add a top level test configuration file for test states that are common to all BSPs. This saves adding a test configuration (tcfg) file for every BSP. - Add the test states 'user-input' and 'benchmark'. This lets 'rtems-test' stop the test rather than waiting for a timeout or letting a benchmark run without the user asking for it to run. - Implement rtems-test-check in Python to make it faster. The shell script had grown to a point it was noticably slowing the build down. - Fix the configure.ac and Makefile.am files for a number of the test directories. The files are difficiult to keep in sync with the number of tests and mistakes can happen such as tests being left out of the build. The test fsrofs01 is an example. Also a there was a mix of SUBDIRS and _SUBDIRS being used and only _SUBDIRS should be used. - Fix the test fsrofs01 so it compiles. Closes #2963.
* rtems: Add rtems_interrupt_local_disable|enable()Sebastian Huber2015-06-221-0/+2
| | | | | | | | Add rtems_interrupt_local_disable|enable() as suggested by Pavel Pisa to emphasize that interrupts are only disabled on the current processor. Do not define the rtems_interrupt_disable|enable|flash() macros and functions on SMP configurations since they don't ensure system wide mutual exclusion.
* Update bug report URLSebastian Huber2014-12-051-1/+1
|
* Require automake-1.12.2.Ralf Corsépius2012-07-191-1/+1
|
* Require autoconf-2.69.Ralf Corsépius2012-07-191-1/+1
|
* Remove All CVS Id Strings Possible Using a ScriptJoel Sherrill2012-05-111-2/+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-071-0/+2
| | | | | See http://www.rtems.org/pipermail/rtems-devel/2012-May/001006.html for details.
* Remove CVS-Ids.Ralf Corsépius2012-05-041-2/+0
|
* 2011-09-30 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2011-09-301-0/+3
| | | | * configure.ac: Check for size of time_t.
* 2011-02-22 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2011-02-221-1/+1
| | | | * configure.ac: Add AC_CONFIG_HEADER(config.h).
* 2011-02-02 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2011-02-021-1/+1
| | | | * configure.ac: Require autoconf-2.68, automake-1.11.1.
* 2010-08-16 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2010-08-161-5/+2
| | | | | | * fileio/Makefile.am: Remove AM_CONDITIONAL(LIBCHIP). * configure.ac: Remove AM_CONDITIONAL(LIBCHIP). Force autoconf-2.67, automake-1.11.1.
* 2007-08-17 Chris Johns <chrisj@rtems.org>Chris Johns2007-08-171-0/+1
| | | | | | | * Makefile.am, README, configure.ac, capture/.cvsignore, capture/Makefile.am, capture/capture.doc, capture/capture.scn, capture/init.c, capture/system.h, capture/test1.c: Add a sample test for the capture engine.
* 2007-04-02 Joel Sherrill <joel@OARcorp.com>Joel Sherrill2007-04-021-0/+1
| | | | | | | | * Makefile.am, configure.ac: Convert from Classic API style TOD_Control as fundamental time structure to POSIX struct timespec. Add clock_get_uptime(). * nsecs/.cvsignore, nsecs/Makefile.am, nsecs/init.c, nsecs/nsecs.doc, nsecs/nsecs.scn: New files.
* 2006-12-02 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2006-12-021-1/+1
| | | | * configure.ac: New BUG-REPORT address.
* 2006-10-17 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2006-10-171-2/+2
| | | | * configure.ac: Require autoconf-2.60. Require automake-1.10.
* 2005-11-22 Ralf Corsepius <ralf.corsepius@rtems.org>Ralf Corsepius2005-11-221-1/+0
| | | | | * configure.ac: Remove RTEMS_ENABLE_BARE, BARE_CPU_CFLAGS, BARE_CPU_MODEL.
* Remove AMPOLISH3Ralf Corsepius2005-11-111-4/+0
|
* Add ampolish3.Ralf Corsepius2005-11-101-0/+4
|
* 2005-11-09 Ralf Corsepius <ralf.corsepius@rtems.org>Ralf Corsepius2005-11-091-5/+4
| | | | * configure.ac: Apply RTEMS_CHECK_CPUOPTS.
* Fix typo in previous change.Ralf Corsepius2004-09-241-1/+1
|
* 2004-09-24 Ralf Corsepius <ralf_corsepius@rtems.org>Ralf Corsepius2004-09-241-1/+1
| | | | * configure.ac: Require automake > 1.9.
* 2004-05-10 Ralf Corsepius <ralf_corsepius@rtems.org>Ralf Corsepius2004-05-101-4/+28
| | | | | | | | | * configure.ac: Add CXX-checks. New conditionals CXXTESTS, MPTESTS, NETTESTS. Add iostream/. * Makefile.am, base_mp/node1/Makefile.am, base_mp/node2/Makefile.am cdtest/Makefile.am, loopback/Makefile.am, pppd/Makefile.am: Reflect changes above. * cdtest/main.cc: Adaptation to new C++ standards.
* 2004-03-25 Ralf Corsepius <corsepiu@faw.uni-ulm.de>Ralf Corsepius2004-03-251-1/+1
| | | | * configure.ac: Add 2nd arg to RTEMS_TOP.
* 2004-01-21 Ralf Corsepius <corsepiu@faw.uni-ulm.de>Ralf Corsepius2004-01-211-1/+1
| | | | | * configure.ac: Remove -Wall -ansi to work-around non-portability of with cdtest.
* 2003-12-12 Ralf Corsepius <corsepiu@faw.uni-ulm.de>Ralf Corsepius2003-12-121-2/+2
| | | | * configure.ac: Require automake >= 1.8, autoconf >= 2.59.
* 2003-11-10 Ralf Corsepius <corsepiu@faw.uni-ulm.de>Ralf Corsepius2003-11-101-1/+1
| | | | * configure.ac: Reflect having moved to testsuites/.
* 2003-10-23 Ralf Corsepius <corsepiu@faw.uni-ulm.de>Ralf Corsepius2003-10-231-0/+2
| | | | | * configure.ac: Add AM_CONDITIONAL(LIBCHIP). * fileio/Makefile.am: Only build if LIBCHIP is available.
* 2003-10-22 Ralf Corsepius <corsepiu@faw.uni-ulm.de>Ralf Corsepius2003-10-221-1/+0
| | | | * configure.ac: Remove RTEMS_CANONICAL_HOST.
* 2003-10-02 Ralf Corsepius <corsepiu@faw.uni-ulm.de>Ralf Corsepius2003-10-021-1/+0
| | | | * configure.ac:Remove RTEMS_CHECK_CPU.
* 2003-08-11 Ralf Corsepius <corsepiu@faw.uni-ulm.de>Ralf Corsepius2003-08-111-1/+1
| | | | * configure.ac: Use rtems-bugs@rtems.com as bug report email address.
* 2003-08-06 Thomas Doerfler<Thomas.Doerfler@imd-systems.de>Jennifer Averett2003-08-061-0/+1
| | | | | | | | PR 369/filesystem * Makefile.am, configure.ac: sample application to show the use of the DOSFS functions * fileio/Makefile.am, fileio/fileio.doc, fileio/init.c, fileio/system.h: New files.
* 2003-04-29 Ralf Corsepius <corsepiu@faw.uni-ulm.de>Ralf Corsepius2003-04-291-0/+1
| | | | | * configure.ac: Add pppd. * Makefile.am: Add pppd.
* Merger from rtems-4-6-branch.Ralf Corsepius2003-03-111-1/+0
|
* 2003-02-11 Ralf Corsepius <corsepiu@faw.uni-ulm.de>Ralf Corsepius2003-02-111-1/+1
| | | | * configure.ac: AM_INIT_AUTOMAKE([1.7.2]).
* 2003-02-11 Ralf Corsepius <corsepiu@faw.uni-ulm.de>Ralf Corsepius2003-02-111-1/+1
| | | | * configure.ac: AC_PREREQ(2.57).
* 2003-01-27 Joel Sherrill <joel@OARcorp.com>Joel Sherrill2003-01-271-0/+3
| | | | | | | | | | | * Makefile.am, configure.ac: Added new test loopback which shows how to use the loopback interface. Thank you Eric Norum for a portable target independent test which exercises the TCP/IP. This should prevent massive failures in the TCP/IP stack from reaching the street. * loopback/.cvsignore, loopback/Makefile.am, loopback/README, loopback/init.c, loopback/loopback.scn: New files.
* 2002-11-05 Ralf Corsepius <corsepiu@faw.uni-ulm.de>Ralf Corsepius2002-11-051-3/+1
| | | | | * configure.ac: Unconditionally check for CXX (Hack to bug in autoconf > 2.54).
* 2002-04-14 Ralf Corsepius <corsepiu@faw.uni-ulm.de>Joel Sherrill2002-04-161-1/+0
| | | | * configure.ac: Remove ENABLE_GCC28.
* 2002-03-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de>Joel Sherrill2002-03-281-2/+2
| | | | | | | | | | | | | | | | | * configure.ac: AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS). AM_INIT_AUTOMAKE([no-define foreign 1.6]). * base_mp/node1/Makefile.am: Remove AUTOMAKE_OPTIONS. * base_mp/Makefile.am: Remove AUTOMAKE_OPTIONS. * base_mp/node2/Makefile.am: Remove AUTOMAKE_OPTIONS. * Makefile.am: Remove AUTOMAKE_OPTIONS. * base_sp/Makefile.am: Remove AUTOMAKE_OPTIONS. * cdtest/Makefile.am: Remove AUTOMAKE_OPTIONS. * hello/Makefile.am: Remove AUTOMAKE_OPTIONS. * minimum/Makefile.am: Remove AUTOMAKE_OPTIONS. * paranoia/Makefile.am: Remove AUTOMAKE_OPTIONS. * ticker/Makefile.am: Remove AUTOMAKE_OPTIONS. * unlimited/Makefile.am: Remove AUTOMAKE_OPTIONS.
* 2001-10-11 Ralf Corsepius <corsepiu@faw.uni-ulm.de>Joel Sherrill2001-10-121-0/+55
* .cvsignore: Add autom4te.cache for autoconf > 2.52. * configure.in: Remove.