According to Harri Pasanen, the Solaris+gcc test for LINKFORSHARED

needed an adaptation for the latest gcc -- we need to grep stderr as
well as stdout for the magic string BFD.  (Does anybody know what BFD
means?)
This commit is contained in:
Guido van Rossum 2000-02-03 13:42:50 +00:00
parent 43265beff9
commit 9c6ba9b598
1 changed files with 1 additions and 1 deletions

View File

@ -565,7 +565,7 @@ then
fi;;
SunOS/5*) case $CC in
*gcc*)
if $CC -Xlinker -V 2>/dev/null | grep BFD >/dev/null
if $CC -Xlinker -V 2>&1 | grep BFD >/dev/null
then
LINKFORSHARED="-Xlinker --export-dynamic"
fi;;