Temporarily disable libdl for v850

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 v850 until the ticket is resolved.

updates 2260.
This commit is contained in:
Joel Sherrill
2015-03-04 15:13:24 -06:00
parent 9bef63ea8e
commit 1d061ee37e
2 changed files with 8 additions and 2 deletions

View File

@@ -377,11 +377,14 @@ AM_CONDITIONAL([RPCTOOLS],[test "$RPCGEN" = rpcgen \
AC_MSG_CHECKING([whether CPU supports libdl])
case $RTEMS_CPU in
arm | h8300 | i386 | lm32 | m32r | m68k | mips | \
moxie | powerpc | sparc | v850)
moxie | powerpc | sparc)
HAVE_LIBDL=yes ;;
# bfin has an issue to resolve with libdl. See ticket #2252
bfin)
HAVE_LIBDL=no ;;
# v850 has an issue to resolve with libdl. See ticket #2260
v850)
HAVE_LIBDL=no ;;
*)
HAVE_LIBDL=no ;;
esac

View File

@@ -45,11 +45,14 @@ AM_CONDITIONAL(HAS_POSIX,test x"${rtems_cv_RTEMS_POSIX_API}" = x"yes")
AC_MSG_CHECKING([whether CPU supports libdl])
case $RTEMS_CPU in
arm | h8300 | i386 | lm32 | m32r | m68k | mips | \
moxie | powerpc | sparc | v850)
moxie | powerpc | sparc)
TEST_LIBDL=yes ;;
# bfin has an issue to resolve with libdl. See ticket #2252
bfin)
HAVE_LIBDL=no ;;
# v850 has an issue to resolve with libdl. See ticket #2260
v850)
HAVE_LIBDL=no ;;
*)
TEST_LIBDL=no ;;
esac