diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2002-04-18 14:51:36 +0000 |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2002-04-18 14:51:36 +0000 |
commit | a4548576332c13b1ec5c8100b43743b20d06f9fb (patch) | |
tree | af4e95795faa3a879ba93835ccbaa31092d5d453 /configure | |
parent | 5379dea2a7ad0639ce15d06a198f71990d039462 (diff) | |
download | cpython-git-a4548576332c13b1ec5c8100b43743b20d06f9fb.tar.gz |
Test for --export-dynamic directly to avoid problems with binutils 2.12.
Will backport to 2.1 and 2.2.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ #! /bin/sh -# From configure.in Revision: 1.310 . +# From configure.in Revision: 1.311 . # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.53. # @@ -8849,7 +8849,7 @@ then fi;; SunOS/5*) case $CC in *gcc*) - if $CC -Xlinker -V 2>&1 | grep BFD >/dev/null + if $CC -Xlinker --help 2>&1 | grep export-dynamic >/dev/null then LINKFORSHARED="-Xlinker --export-dynamic" fi;; |