summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@oarcorp.com>2015-03-05 17:33:38 -0600
committerJoel Sherrill <joel.sherrill@oarcorp.com>2015-03-06 20:04:24 -0600
commita726ca6488be4c16427907a7fba0396d2030d1ee (patch)
tree7110317c3615279817bf95b48778cbde3cf37335
parentTemporarily disable libdl for v850 (diff)
downloadrtems-a726ca6488be4c16427907a7fba0396d2030d1ee.tar.bz2
Temporarily disable libdl for lm32
There is a GCC ICE when building libdl. This temporarily disables building libdl until that is resolved. updates 2283.
-rw-r--r--cpukit/configure.ac5
-rw-r--r--testsuites/libtests/configure.ac5
2 files changed, 8 insertions, 2 deletions
diff --git a/cpukit/configure.ac b/cpukit/configure.ac
index 39104ec316..b3b054aa9b 100644
--- a/cpukit/configure.ac
+++ b/cpukit/configure.ac
@@ -376,12 +376,15 @@ AM_CONDITIONAL([RPCTOOLS],[test "$RPCGEN" = rpcgen \
# reloc backends
AC_MSG_CHECKING([whether CPU supports libdl])
case $RTEMS_CPU in
- arm | h8300 | i386 | lm32 | m32r | m68k | mips | \
+ arm | h8300 | i386 | m32r | m68k | mips | \
moxie | powerpc | sparc)
HAVE_LIBDL=yes ;;
# bfin has an issue to resolve with libdl. See ticket #2252
bfin)
HAVE_LIBDL=no ;;
+ # lm32 has an issue to resolve with libdl. See ticket #2283
+ lm32)
+ HAVE_LIBDL=no ;;
# v850 has an issue to resolve with libdl. See ticket #2260
v850)
HAVE_LIBDL=no ;;
diff --git a/testsuites/libtests/configure.ac b/testsuites/libtests/configure.ac
index 53083849fd..f417722e3b 100644
--- a/testsuites/libtests/configure.ac
+++ b/testsuites/libtests/configure.ac
@@ -44,12 +44,15 @@ AM_CONDITIONAL(HAS_POSIX,test x"${rtems_cv_RTEMS_POSIX_API}" = x"yes")
# Must match the list in cpukit.
AC_MSG_CHECKING([whether CPU supports libdl])
case $RTEMS_CPU in
- arm | h8300 | i386 | lm32 | m32r | m68k | mips | \
+ arm | h8300 | i386 | m32r | m68k | mips | \
moxie | powerpc | sparc)
TEST_LIBDL=yes ;;
# bfin has an issue to resolve with libdl. See ticket #2252
bfin)
HAVE_LIBDL=no ;;
+ # lm32 has an issue to resolve with libdl. See ticket #2283
+ lm32)
+ HAVE_LIBDL=no ;;
# v850 has an issue to resolve with libdl. See ticket #2260
v850)
HAVE_LIBDL=no ;;