source: rtems/aclocal/check-multiprocessing.m4 @ b8a30d07

4.104.114.84.95
Last change on this file since b8a30d07 was b8a30d07, checked in by Joel Sherrill <joel.sherrill@…>, on 07/13/00 at 15:05:38

Patch rtems-rc-20000713-1-cvs.diff from Ralf Corsepius <corsepiu@…>
that is yet another multilib-related structual cleanup patch:

Changes:

  • Make RTEMS_TEST_NO_PAUSE a tests/ subpackage specific option.
    • Remove RTEMS_TEST_NO_PAUSE from custom/*.cfg, targopts.h and cpuopts.h.
    • Add autoconf macros RTEMS_*_RTEMS_TEST_NO_PAUSE (aclocal/rtems-test-no-pause.m4).
    • Add RTEMS_*_RTEMS_TEST_NO_PAUSE support to sptests/configure.ins and tmtests/configure.in. These are the only subdirectories which currently apply RTEMS_TEST_NO_PAUSE.
    • Add autoconf-DEFS support to all test subpackages' configure.ins below tests/. I.e. AC_DEFINES now get explicitly propagated as preprocessor defines into Makefiles, cf. AM_CPPFLAGS in tests/*/*.am, instead of using a global config-files.
    • Remove NDEBUG from custom/*.cfg.
  • AC_DEFINE POSIX_API, ITRON_API and MULTIPROCESSING in exec/configure.in, only.
    • All other sources now should relay on the values from cpuopts.h and should not define them themselves.
    • Several related changes to many configure.ins
  • Bug-fixes to RTEMS_*_RTEMS_DEBUG macros (Actually workarounds to quoting bugs in autoconf).

Notes:

  • This patch is rather immature and only tested for a small subset of BSPs (requires the tests to be enabled and therefore takes an tremendous amount of disc space and time.)
  • The patches to *cfg were generated by a script. Expect file formating changes :)
  • Property mode set to 100644
File size: 1.1 KB
RevLine 
[3a8915e]1dnl
[fdb37e8]2dnl $Id$
[3a8915e]3dnl
[fdb37e8]4
5AC_DEFUN(RTEMS_CHECK_MULTIPROCESSING,
6[dnl
[fe5851ce]7AC_REQUIRE([RTEMS_ENABLE_MULTILIB])dnl
[9608320]8AC_REQUIRE([RTEMS_ENV_RTEMSBSP])dnl
[fdb37e8]9AC_REQUIRE([RTEMS_TOP])dnl
10AC_REQUIRE([RTEMS_CHECK_CPU])dnl
[b62a92c]11AC_REQUIRE([RTEMS_ENABLE_MULTIPROCESSING])dnl
[c63a5cf]12AC_REQUIRE([RTEMS_BSP_ALIAS])dnl
[b62a92c]13
[fdb37e8]14AC_CACHE_CHECK([whether BSP supports multiprocessing],
15  rtems_cv_HAS_MP,
16  [dnl
[fe5851ce]17    if test x"$multilib" = x"yes"; then
18      # FIXME: Currently, multilibs and multiprocessing can not be
19      # build simultaneously
20      rtems_cv_HAS_MP="disabled"
21    else
22      if test -d "$srcdir/${RTEMS_TOPdir}/c/src/lib/libbsp/${RTEMS_CPU}/${RTEMS_BSP_FAMILY}/shmsupp"; then
23        if test "$RTEMS_HAS_MULTIPROCESSING" = "yes"; then
24          rtems_cv_HAS_MP="yes" ;
25        else
26          rtems_cv_HAS_MP="disabled";
27        fi
[fdb37e8]28      else
[fe5851ce]29        rtems_cv_HAS_MP="no";
[fdb37e8]30      fi
[3a8915e]31    fi])
[fdb37e8]32if test "$rtems_cv_HAS_MP" = "yes"; then
33HAS_MP="yes"
34else
35HAS_MP="no"
36fi
37AC_SUBST(HAS_MP)
[b8a30d07]38])
[04e6f7bf]39
[b8a30d07]40AC_DEFUN(RTEMS_DEFINE_MULTIPROCESSING,
41[AC_REQUIRE([RTEMS_CHECK_MULTIPROCESSING])dnl
[04e6f7bf]42if test x"${HAS_MP}" = x"yes";
43then
44  AC_DEFINE_UNQUOTED(RTEMS_MULTIPROCESSING,1,[if multiprocessing is supported])
45fi
[fdb37e8]46])
Note: See TracBrowser for help on using the repository browser.