forked from Imagelibrary/rtems
that is a somewhat experimental, multilib-related patch:
Changes:
* Use RTEMS_ENV_RTEMSCPU instead of RTEMS_ENV_RTEMSBSP in
configure.ins below exec/.
At the moment, RTEMS_ENV_RTEMSCPU is more or less an optical change
to emphasize that these subdirectories shall not depend on RTEMS_BSP
than a real behavioral change.
* Add AC_DEFINE_* to several aclocal/*.m4 macros to prepare
autoheader/autoconf generated targopts.h and similiar configuration
headers.
* c/src/configure.in: remove exec from cfg_subdirs if multilibs are
enabled (c/src is build per bsp, exec shall be build per cpu in c/
or from the toplevel in future, when multilibs are enabled.)
Notes:
* This patch should not have any impact on the current building scheme.
* --enable-multilib still does not work.
* running bootstrap from the toplevel directory is required.
CVS: ----------------------------------------------------------------------
CVS: Enter Log. Lines beginning with `CVS:' are removed automatically
CVS:
CVS: Committing in .
CVS:
CVS: Modified Files:
CVS: c/src/tests/libtests/termios/init.c
CVS: ----------------------------------------------------------------------
45 lines
1.0 KiB
Plaintext
45 lines
1.0 KiB
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)
|
|
|
|
if test x"${HAS_MP}" = x"yes";
|
|
then
|
|
AC_DEFINE_UNQUOTED(RTEMS_MULTIPROCESSING,1,[if multiprocessing is supported])
|
|
fi
|
|
|
|
])
|