aboutsummaryrefslogtreecommitdiff
path: root/libstdc++-v3/configure
diff options
context:
space:
mode:
authorDaniel Jacobowitz <drow@mvista.com>2003-09-11 03:11:31 +0000
committerDaniel Jacobowitz <drow@gcc.gnu.org>2003-09-11 03:11:31 +0000
commitdbc66058f0bc72234e3926846dc19211ac93a952 (patch)
tree3cc091d2df064c2b8ecfe63057cc22e612eda151 /libstdc++-v3/configure
parent6b657b2e096a3acd27973f061643c4f48edd65ef (diff)
downloadgcc-dbc66058f0bc72234e3926846dc19211ac93a952.zip
gcc-dbc66058f0bc72234e3926846dc19211ac93a952.tar.gz
gcc-dbc66058f0bc72234e3926846dc19211ac93a952.tar.bz2
re PR libstdc++/12189 (abi_check fails to build)
PR libstdc++/12189 * acinclude.m4 (GLIBCXX_CONFIGURE_TESTSUITE): Don't build abi_check if cross compiling. * aclocal.m4: Regenerated. * configure: Regenerated. Co-Authored-By: Andreas Jaeger <aj@suse.de> From-SVN: r71291
Diffstat (limited to 'libstdc++-v3/configure')
-rwxr-xr-xlibstdc++-v3/configure27
1 files changed, 15 insertions, 12 deletions
diff --git a/libstdc++-v3/configure b/libstdc++-v3/configure
index fb170a7..2a41645 100755
--- a/libstdc++-v3/configure
+++ b/libstdc++-v3/configure
@@ -59011,24 +59011,27 @@ done
fi
+
+ if test $enable_symvers = no; then
+ enable_abi_check=no
+ else
+ case "$host" in
+ *-*-cygwin*)
+ enable_abi_check=no ;;
+ *)
+ enable_abi_check=yes ;;
+ esac
+ fi
+ else
+ # Only build this as native, since automake does not understand
+ # CXX_FOR_BUILD.
+ enable_abi_check=no
fi
# Export file names for ABI checking.
baseline_dir="$glibcxx_srcdir/config/abi/${abi_baseline_pair}\$(MULTISUBDIR)"
- # Determine if checking the ABI is desirable.
- if test $enable_symvers = no || test $is_hosted = no; then
- enable_abi_check=no
- else
- case "$host" in
- *-*-cygwin*)
- enable_abi_check=no ;;
- *)
- enable_abi_check=yes ;;
- esac
- fi
-