Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
8c3c52b1
Commit
8c3c52b1
authored
Aug 27, 2016
by
Martin Panter
Browse files
Options
Browse Files
Download
Plain Diff
Issue #25825: Merge $(LIBPL) fix from 3.5
parents
aac9b716
5de141f1
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
2 deletions
+8
-2
Misc/NEWS
Misc/NEWS
+6
-0
configure
configure
+1
-1
configure.ac
configure.ac
+1
-1
No files found.
Misc/NEWS
View file @
8c3c52b1
...
...
@@ -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
==================================
...
...
configure
View file @
8c3c52b1
...
...
@@ -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"
;;
...
...
configure.ac
View file @
8c3c52b1
...
...
@@ -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";;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment