Changeset e1664027 in rtems
- Timestamp:
- 04/09/18 06:36:12 (5 years ago)
- Branches:
- 5, master
- Children:
- 18f77699
- Parents:
- 9f6f026
- git-author:
- Chris Johns <chrisj@…> (04/09/18 06:36:12)
- git-committer:
- Chris Johns <chrisj@…> (04/09/18 22:22:07)
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
aclocal/enable-multiprocessing.m4
r9f6f026 re1664027 6 6 communication interface between different RTEMS instances and allows 7 7 synchronization of objects via message passing])], 8 [case "${enable_multiprocessing}" in 9 yes) ;; 8 [case "${enable_multiprocessing}" in 9 yes) test -z $enable_rtemsbsp && AC_MSG_ERROR([Multiprocessing requires BSPs to be provided, none have, see --enable-rtemsbsp]) 10 ;; 10 11 no) ;; 11 12 *) AC_MSG_ERROR(bad value ${enableval} for enable-multiprocessing option) ;; -
aclocal/enable-rtemsbsp.m4
r9f6f026 re1664027 7 7 AC_ARG_ENABLE(rtemsbsp, 8 8 [AS_HELP_STRING([--enable-rtemsbsp="bsp1 bsp2 .."], 9 [BSPs to include in build ])],9 [BSPs to include in build, required for SMP and MP builds])], 10 10 [case "${enable_rtemsbsp}" in 11 11 yes ) enable_rtemsbsp="" ;; -
aclocal/enable-smp.m4
r9f6f026 re1664027 6 6 [AS_HELP_STRING([--enable-smp],[enable support for symmetric multiprocessing 7 7 (SMP)])], 8 [case "${enableval}" in 9 yes) case "${RTEMS_CPU}" in 8 [case "${enableval}" in 9 yes) test -z $enable_rtemsbsp && AC_MSG_ERROR([SMP requires BSPs to be provided, none have, see --enable-rtemsbsp]) 10 case "${RTEMS_CPU}" in 10 11 arm|powerpc|sparc|i386) RTEMS_HAS_SMP=yes ;; 11 12 *) RTEMS_HAS_SMP=no ;; … … 14 15 no) RTEMS_HAS_SMP=no ;; 15 16 *) AC_MSG_ERROR(bad value ${enableval} for enable-smp option) ;; 16 esac],[RTEMS_HAS_SMP=no]) 17 esac],[RTEMS_HAS_SMP=no]) 17 18 ]) -
configure.ac
r9f6f026 re1664027 22 22 ## These option are only in here to let --help report all supported 23 23 ## options. 24 RTEMS_ENABLE_RTEMSBSP 24 25 RTEMS_ENABLE_MULTIPROCESSING 26 RTEMS_ENABLE_SMP 25 27 RTEMS_ENABLE_POSIX 26 28 RTEMS_ENABLE_NETWORKING … … 28 30 RTEMS_ENABLE_TESTS 29 31 RTEMS_ENABLE_RTEMS_DEBUG 30 RTEMS_ENABLE_RTEMSBSP31 32 RTEMS_ENABLE_PARAVIRT 32 33 RTEMS_ENABLE_DRVMGR
Note: See TracChangeset
for help on using the changeset viewer.