forked from Imagelibrary/rtems
that is part of the multilib/gnu-canonicalization movement:
Changes:
* New m4-macro: aclocal/multilib.am
* Suppress multiprocessing if --enable-multilib is given to
configure
Notes:
For now this patch only suppresses multiprocessing if
--enable-multilib is given to configure and should not have any
other side-effects, ie. it works around a minor issue which prevents
introduction of multilibs in general.
The RTEMS_ENABLE_MULTILIB_MASTER macro is the core part to build
real multilibs, but can not be applied before other multilib related
issues with RTEMS have been solved. (e.g. sptables.h, bsp_specs,
Cygnus/Gnu canonicalization, _RTEMS_version, targopts.h, changing
the installation point/tooldir support, etc.).
39 lines
951 B
Plaintext
39 lines
951 B
Plaintext
dnl
|
|
dnl $Id$
|
|
dnl
|
|
|
|
AC_DEFUN(RTEMS_CHECK_MULTIPROCESSING,
|
|
[dnl
|
|
AC_REQUIRE([RTEMS_ENABLE_MULTILIB])dnl
|
|
AC_REQUIRE([RTEMS_ENV_RTEMSBSP])dnl
|
|
AC_REQUIRE([RTEMS_TOP])dnl
|
|
AC_REQUIRE([RTEMS_CHECK_CPU])dnl
|
|
AC_REQUIRE([RTEMS_ENABLE_MULTIPROCESSING])dnl
|
|
AC_REQUIRE([RTEMS_BSP_ALIAS])dnl
|
|
|
|
AC_CACHE_CHECK([whether BSP supports multiprocessing],
|
|
rtems_cv_HAS_MP,
|
|
[dnl
|
|
if test x"$multilib" = x"yes"; then
|
|
# FIXME: Currently, multilibs and multiprocessing can not be
|
|
# build simultaneously
|
|
rtems_cv_HAS_MP="disabled"
|
|
else
|
|
if test -d "$srcdir/${RTEMS_TOPdir}/c/src/lib/libbsp/${RTEMS_CPU}/${RTEMS_BSP_FAMILY}/shmsupp"; then
|
|
if test "$RTEMS_HAS_MULTIPROCESSING" = "yes"; then
|
|
rtems_cv_HAS_MP="yes" ;
|
|
else
|
|
rtems_cv_HAS_MP="disabled";
|
|
fi
|
|
else
|
|
rtems_cv_HAS_MP="no";
|
|
fi
|
|
fi])
|
|
if test "$rtems_cv_HAS_MP" = "yes"; then
|
|
HAS_MP="yes"
|
|
else
|
|
HAS_MP="no"
|
|
fi
|
|
AC_SUBST(HAS_MP)
|
|
])
|