2005-11-09 Ralf Corsepius <ralf.corsepius@rtems.org>

* configure.ac: Reflect changes to testsuites.
This commit is contained in:
Ralf Corsepius
2005-11-09 10:25:28 +00:00
parent a3ae8a9898
commit 3f74676065
2 changed files with 22 additions and 2 deletions

View File

@@ -1,3 +1,7 @@
2005-11-09 Ralf Corsepius <ralf.corsepius@rtems.org>
* configure.ac: Reflect changes to testsuites.
2005-11-08 Ralf Corsepius <ralf.corsepius@rtems.org>
* automake/compile.am: Remove GCCSPECS.

View File

@@ -183,15 +183,31 @@ RTEMS_BSP_CONFIG_SUBDIR(
],
[test x"$enable_tests" = xyes && test x"$enable_ada" = xyes])
# HACK ALERT!
# FIXME: Assume multilib implies in-source-tree multilibs
# Build testsuites multilibbed
RTEMS_BSP_CONFIG_SUBDIR(
[testsuites],[../../testsuites],
['--enable-rtems-root=../' \
'--with-project-root=${with_project_root}../' \
'--enable-project-root=${with_project_root}../$RTEMS_BSP' \
'--with-project-top=${with_project_top}../' \
'--enable-rtemsbsp=$RTEMS_BSP' \
'CFLAGS="${CFLAGS}"' \
],
[test x"$enable_tests" != x"no"])
[test x"$enable_tests" != x"no" && test x"$multilib" = xno])
# Build testsuites non-multilibbed
RTEMS_BSP_CONFIG_SUBDIR(
[testsuites],[../../testsuites],
['--enable-rtems-root=../' \
'--enable-cpukit-root=${with_project_root}..' \
'--enable-project-root=${with_project_root}../$RTEMS_BSP' \
'--with-project-top=${with_project_top}../' \
'--enable-rtemsbsp=$RTEMS_BSP' \
'CFLAGS="${CFLAGS}"' \
],
[test x"$enable_tests" != x"no" && test x"$multilib" = xyes])
AC_SUBST([BSP_SUBDIRS],[$BSP_SUBDIRS])