[rtems commit] Temporarily disable libdl for h8300

Joel Sherril joel at rtems.org
Sat Mar 7 02:04:31 UTC 2015


Module:    rtems
Branch:    master
Commit:    19a1f6b2cc8a67aa79b2c08d278089c569915c45
Changeset: http://git.rtems.org/rtems/commit/?id=19a1f6b2cc8a67aa79b2c08d278089c569915c45

Author:    Joel Sherrill <joel.sherrill at oarcorp.com>
Date:      Fri Mar  6 08:34:03 2015 -0600

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.

---

 cpukit/configure.ac              | 5 ++++-
 testsuites/libtests/configure.ac | 5 ++++-
 2 files changed, 8 insertions(+), 2 deletions(-)

diff --git a/cpukit/configure.ac b/cpukit/configure.ac
index b3b054a..2b16964 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 ;;
diff --git a/testsuites/libtests/configure.ac b/testsuites/libtests/configure.ac
index f417722..4924e0f 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 | m32r | m68k | mips | \
+  arm | 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 ;;
+  # 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 ;;




More information about the vc mailing list