mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
Close Issue 11570: Lib/test/test_distutils.py tries to mix 32 and 64 bits object files, doesn't obey LDFLAGS
This commit is contained in:
parent
0b8753d24b
commit
d3b7a55f54
2 changed files with 6 additions and 5 deletions
7
configure
vendored
7
configure
vendored
|
@ -769,7 +769,8 @@ CFLAGS
|
|||
LDFLAGS
|
||||
LIBS
|
||||
CPPFLAGS
|
||||
CPP'
|
||||
CPP
|
||||
CPPFLAGS'
|
||||
|
||||
|
||||
# Initialize some variables set by options.
|
||||
|
@ -7551,8 +7552,8 @@ then
|
|||
IRIX*/6*) LDSHARED="ld ${SGI_ABI} -shared -all";;
|
||||
SunOS/5*)
|
||||
if test "$GCC" = "yes"
|
||||
then LDSHARED='$(CC) -shared'
|
||||
else LDSHARED='$(CC) -G';
|
||||
then LDSHARED='$(CC) -shared $(LDFLAGS)'
|
||||
else LDSHARED='$(CC) -G $(LDFLAGS)';
|
||||
fi ;;
|
||||
hp*|HP*)
|
||||
if test "$GCC" = "yes"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue