libstdc++: Disabling AC_LIBTOOL_DLOPEN check if building with avr-libc
The AC_LIBTOOL_DLOPEN checks were previously disabled for newlib targets. The patch applies similar logic to avr-libc based builds. libstdc++-v3/ChangeLog: * configure.ac: Skip AC_LIBTOOL_DLOPEN check if avr-libc is used. * configure: Regenerate.
This commit is contained in:
parent
cf4ed3b415
commit
a929b39aa3
2 changed files with 2 additions and 2 deletions
2
libstdc++-v3/configure
vendored
2
libstdc++-v3/configure
vendored
|
@ -5899,7 +5899,7 @@ $as_echo "$as_me: OS config directory is $os_include_dir" >&6;}
|
|||
|
||||
|
||||
# Libtool setup.
|
||||
if test "x${with_newlib}" != "xyes"; then
|
||||
if test "x${with_newlib}" != "xyes" && test "x${with_avrlibc}" != "xyes"; then
|
||||
enable_dlopen=yes
|
||||
|
||||
|
||||
|
|
|
@ -90,7 +90,7 @@ AC_SYS_LARGEFILE
|
|||
GLIBCXX_CONFIGURE
|
||||
|
||||
# Libtool setup.
|
||||
if test "x${with_newlib}" != "xyes"; then
|
||||
if test "x${with_newlib}" != "xyes" && test "x${with_avrlibc}" != "xyes"; then
|
||||
AC_LIBTOOL_DLOPEN
|
||||
fi
|
||||
AM_PROG_LIBTOOL
|
||||
|
|
Loading…
Add table
Reference in a new issue