summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@oarcorp.com>2015-03-04 15:10:42 -0600
committerJoel Sherrill <joel.sherrill@oarcorp.com>2015-03-06 20:04:23 -0600
commit9bef63ea8e6cfa17050021734a84daa96ea7f04a (patch)
tree111d05ee5ae545f79079da66a59838c828da68ec
parentraspberrypi: Do not include default IRQ handler and BSP specific one (diff)
downloadrtems-9bef63ea8e6cfa17050021734a84daa96ea7f04a.tar.bz2
Temporarily disable libdl for bfin
There is an issue linking dl0* which has not been resolved. This issue is being tracked but is not considered a release blocker. This patch is a workaround which disables libdl for the bfin until the ticket is resolved. updates 2252.
-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 5067315a50..f4d4e7bfda 100644
--- a/cpukit/configure.ac
+++ b/cpukit/configure.ac
@@ -376,9 +376,12 @@ AM_CONDITIONAL([RPCTOOLS],[test "$RPCGEN" = rpcgen \
# reloc backends
AC_MSG_CHECKING([whether CPU supports libdl])
case $RTEMS_CPU in
- arm | bfin | h8300 | i386 | lm32 | m32r | m68k | mips | \
+ arm | h8300 | i386 | lm32 | m32r | m68k | mips | \
moxie | powerpc | sparc | v850)
HAVE_LIBDL=yes ;;
+ # bfin has an issue to resolve with libdl. See ticket #2252
+ bfin)
+ HAVE_LIBDL=no ;;
*)
HAVE_LIBDL=no ;;
esac
diff --git a/testsuites/libtests/configure.ac b/testsuites/libtests/configure.ac
index 1cc5943f7f..7c82394c11 100644
--- a/testsuites/libtests/configure.ac
+++ b/testsuites/libtests/configure.ac
@@ -44,9 +44,12 @@ 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 | bfin | h8300 | i386 | lm32 | m32r | m68k | mips | \
+ arm | h8300 | i386 | lm32 | m32r | m68k | mips | \
moxie | powerpc | sparc | v850)
TEST_LIBDL=yes ;;
+ # bfin has an issue to resolve with libdl. See ticket #2252
+ bfin)
+ HAVE_LIBDL=no ;;
*)
TEST_LIBDL=no ;;
esac