diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2002-04-18 14:51:36 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2002-04-18 14:51:36 (GMT) |
commit | a4548576332c13b1ec5c8100b43743b20d06f9fb (patch) | |
tree | af4e95795faa3a879ba93835ccbaa31092d5d453 /configure.in | |
parent | 5379dea2a7ad0639ce15d06a198f71990d039462 (diff) | |
download | cpython-a4548576332c13b1ec5c8100b43743b20d06f9fb.zip cpython-a4548576332c13b1ec5c8100b43743b20d06f9fb.tar.gz cpython-a4548576332c13b1ec5c8100b43743b20d06f9fb.tar.bz2 |
Test for --export-dynamic directly to avoid problems with binutils 2.12.
Will backport to 2.1 and 2.2.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index de9f216..8f76399 100644 --- a/configure.in +++ b/configure.in @@ -984,7 +984,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;; |