aboutsummaryrefslogtreecommitdiff
path: root/libstdc++-v3/configure.ac
diff options
context:
space:
mode:
authorVladimir Vishnevsky <vv.os.swe@gmail.com>2020-12-15 11:40:07 +0000
committerJonathan Wakely <jwakely@redhat.com>2020-12-15 11:45:26 +0000
commita929b39aa32a6bc65158bd8e32ce96bc1c906065 (patch)
treea58e8ae48fb67c68854bfe57480dffc8d32613d5 /libstdc++-v3/configure.ac
parentcf4ed3b41594b6935a337fe0aaf8149eadf88751 (diff)
downloadgcc-a929b39aa32a6bc65158bd8e32ce96bc1c906065.zip
gcc-a929b39aa32a6bc65158bd8e32ce96bc1c906065.tar.gz
gcc-a929b39aa32a6bc65158bd8e32ce96bc1c906065.tar.bz2
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.
Diffstat (limited to 'libstdc++-v3/configure.ac')
-rw-r--r--libstdc++-v3/configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/libstdc++-v3/configure.ac b/libstdc++-v3/configure.ac
index cbfdf4c..7718141 100644
--- a/libstdc++-v3/configure.ac
+++ b/libstdc++-v3/configure.ac
@@ -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