summaryrefslogtreecommitdiffstats
path: root/cpukit/configure.ac
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@oarcorp.com>2015-03-06 08:34:03 -0600
committerJoel Sherrill <joel.sherrill@oarcorp.com>2015-03-06 20:04:25 -0600
commit19a1f6b2cc8a67aa79b2c08d278089c569915c45 (patch)
treedd742cbdfbc4ee16fe2962c0cae49e03a8e2fbc0 /cpukit/configure.ac
parentAdd fsscandir01 variants as needed to more BSPs testsuite configuration (diff)
downloadrtems-19a1f6b2cc8a67aa79b2c08d278089c569915c45.tar.bz2
Temporarily disable libdl for h8300
The h8300 gets a linking error for the dl0* tests. This temporarily disables libdl until that can be investigated. updates 2284.
Diffstat (limited to 'cpukit/configure.ac')
-rw-r--r--cpukit/configure.ac5
1 files changed, 4 insertions, 1 deletions
diff --git a/cpukit/configure.ac b/cpukit/configure.ac
index b3b054aa9b..2b16964ac1 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 | m32r | m68k | mips | \
+ arm | 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 ;;
+ # h8300 has an issue to resolve with libdl. See ticket #2284
+ h8300)
+ HAVE_LIBDL=no ;;
# lm32 has an issue to resolve with libdl. See ticket #2283
lm32)
HAVE_LIBDL=no ;;