source: rtems/cpukit/aclocal/enable-smp.m4 @ bd39add

4.115
Last change on this file since bd39add was ffbeb6f, checked in by Sebastian Huber <sebastian.huber@…>, on 01/18/13 at 08:42:49

smp: Add PowerPC support

  • Property mode set to 100644
File size: 441 bytes
RevLine 
[06dcaf0]1AC_DEFUN([RTEMS_ENABLE_SMP],
2[
3## AC_BEFORE([$0], [RTEMS_CHECK_SMP])dnl
4
5AC_ARG_ENABLE(smp,
6[AS_HELP_STRING([--enable-smp],[enable smp interface])],
7[case "${enableval}" in
8  yes) case "${RTEMS_CPU}" in
[ffbeb6f]9         powerpc|sparc|i386) RTEMS_HAS_SMP=yes ;;
[06dcaf0]10         *)          RTEMS_HAS_SMP=no ;;
11       esac
12       ;;
13  no) RTEMS_HAS_SMP=no ;;
14  *)  AC_MSG_ERROR(bad value ${enableval} for enable-smp option) ;;
15esac],[RTEMS_HAS_SMP=no])
16])
Note: See TracBrowser for help on using the repository browser.