mirror of https://github.com/python/cpython
Issue #25825: Merge $(LIBPL) fix from 3.5
This commit is contained in:
commit
8c3c52b19f
|
@ -89,6 +89,12 @@ Tests
|
|||
- Issue #27787: Call gc.collect() before checking each test for "dangling
|
||||
threads", since the dangling threads are weak references.
|
||||
|
||||
Build
|
||||
-----
|
||||
|
||||
- Issue #25825: Update references to the $(LIBPL) installation path on AIX.
|
||||
This path was changed in 3.2a4.
|
||||
|
||||
|
||||
What's New in Python 3.6.0 alpha 4
|
||||
==================================
|
||||
|
|
|
@ -9079,7 +9079,7 @@ then
|
|||
case $ac_sys_system/$ac_sys_release in
|
||||
AIX*)
|
||||
BLDSHARED="\$(srcdir)/Modules/ld_so_aix \$(CC) -bI:\$(srcdir)/Modules/python.exp"
|
||||
LDSHARED="\$(BINLIBDEST)/config/ld_so_aix \$(CC) -bI:\$(BINLIBDEST)/config/python.exp"
|
||||
LDSHARED="\$(LIBPL)/ld_so_aix \$(CC) -bI:\$(LIBPL)/python.exp"
|
||||
;;
|
||||
IRIX/5*) LDSHARED="ld -shared";;
|
||||
IRIX*/6*) LDSHARED="ld ${SGI_ABI} -shared -all";;
|
||||
|
|
|
@ -2315,7 +2315,7 @@ then
|
|||
case $ac_sys_system/$ac_sys_release in
|
||||
AIX*)
|
||||
BLDSHARED="\$(srcdir)/Modules/ld_so_aix \$(CC) -bI:\$(srcdir)/Modules/python.exp"
|
||||
LDSHARED="\$(BINLIBDEST)/config/ld_so_aix \$(CC) -bI:\$(BINLIBDEST)/config/python.exp"
|
||||
LDSHARED="\$(LIBPL)/ld_so_aix \$(CC) -bI:\$(LIBPL)/python.exp"
|
||||
;;
|
||||
IRIX/5*) LDSHARED="ld -shared";;
|
||||
IRIX*/6*) LDSHARED="ld ${SGI_ABI} -shared -all";;
|
||||
|
|
Loading…
Reference in New Issue