Kaydet (Commit) d3b7a55f authored tarafından Jesus Cea's avatar Jesus Cea

Close Issue 11570: Lib/test/test_distutils.py tries to mix 32 and 64 bits object…

Close Issue 11570: Lib/test/test_distutils.py tries to mix 32 and 64 bits object files, doesn't obey LDFLAGS
üst 0b8753d2
...@@ -769,7 +769,8 @@ CFLAGS ...@@ -769,7 +769,8 @@ CFLAGS
LDFLAGS LDFLAGS
LIBS LIBS
CPPFLAGS CPPFLAGS
CPP' CPP
CPPFLAGS'
# Initialize some variables set by options. # Initialize some variables set by options.
...@@ -7551,8 +7552,8 @@ then ...@@ -7551,8 +7552,8 @@ then
IRIX*/6*) LDSHARED="ld ${SGI_ABI} -shared -all";; IRIX*/6*) LDSHARED="ld ${SGI_ABI} -shared -all";;
SunOS/5*) SunOS/5*)
if test "$GCC" = "yes" if test "$GCC" = "yes"
then LDSHARED='$(CC) -shared' then LDSHARED='$(CC) -shared $(LDFLAGS)'
else LDSHARED='$(CC) -G'; else LDSHARED='$(CC) -G $(LDFLAGS)';
fi ;; fi ;;
hp*|HP*) hp*|HP*)
if test "$GCC" = "yes" if test "$GCC" = "yes"
......
...@@ -1758,8 +1758,8 @@ then ...@@ -1758,8 +1758,8 @@ then
IRIX*/6*) LDSHARED="ld ${SGI_ABI} -shared -all";; IRIX*/6*) LDSHARED="ld ${SGI_ABI} -shared -all";;
SunOS/5*) SunOS/5*)
if test "$GCC" = "yes" if test "$GCC" = "yes"
then LDSHARED='$(CC) -shared' then LDSHARED='$(CC) -shared $(LDFLAGS)'
else LDSHARED='$(CC) -G'; else LDSHARED='$(CC) -G $(LDFLAGS)';
fi ;; fi ;;
hp*|HP*) hp*|HP*)
if test "$GCC" = "yes" if test "$GCC" = "yes"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment