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
4321db20
Commit
4321db20
authored
Nov 20, 2016
by
Martin Panter
Browse files
Options
Browse Files
Download
Plain Diff
Issue #10656: Merge AIX build fix from 3.5
parents
bb977f50
8305b833
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
9 additions
and
3 deletions
+9
-3
Makefile.pre.in
Makefile.pre.in
+1
-1
Misc/ACKS
Misc/ACKS
+2
-0
Misc/NEWS
Misc/NEWS
+3
-0
Modules/ld_so_aix.in
Modules/ld_so_aix.in
+1
-0
configure
configure
+1
-1
configure.ac
configure.ac
+1
-1
No files found.
Makefile.pre.in
View file @
4321db20
...
...
@@ -1421,7 +1421,7 @@ libainstall: all python-config
$(INSTALL_SCRIPT)
$(srcdir)
/Modules/makexp_aix
\
$(DESTDIR)$(LIBPL)
/makexp_aix
;
\
echo
"
$(LIBPL)
/makexp_aix"
;
\
$(INSTALL_SCRIPT)
$(srcdir)
/
Modules/ld_so_aix
\
$(INSTALL_SCRIPT)
Modules/ld_so_aix
\
$(DESTDIR)$(LIBPL)
/ld_so_aix
;
\
echo
"
$(LIBPL)
/ld_so_aix"
;
\
echo
;
echo
"See Misc/AIX-NOTES for details."
;
\
...
...
Misc/ACKS
View file @
4321db20
...
...
@@ -227,6 +227,7 @@ Arnaud Calmettes
Daniel Calvelo
Tony Campbell
Brett Cannon
Tristan Carel
Mike Carlton
Pierre Carrier
Terry Carroll
...
...
@@ -581,6 +582,7 @@ Travis B. Hartwell
Larry Hastings
Tim Hatch
Shane Hathaway
Michael Haubenwallner
Janko Hauser
Rycharde Hawkes
Ben Hayden
...
...
Misc/NEWS
View file @
4321db20
...
...
@@ -90,6 +90,9 @@ Tests
Build
-----
- Issue #10656: Fix out-of-tree building on AIX. Patch by Tristan Carel and
Michael Haubenwallner.
- Issue #26359: Rename --with-optimiations to --enable-optimizations.
- Issue #28676: Prevent missing '
getentropy
' declaration warning on macOS.
...
...
Modules/ld_so_aix.in
View file @
4321db20
...
...
@@ -70,6 +70,7 @@ if test ! -n "$*"; then
fi
makexp
=
`
dirname
$0
`
/makexp_aix
test
-x
"
${
makexp
}
"
||
makexp
=
"@abs_srcdir@/makexp_aix"
# Check for existence of compiler.
CC
=
$1
;
shift
...
...
configure
View file @
4321db20
...
...
@@ -9165,7 +9165,7 @@ if test -z "$LDSHARED"
then
case
$ac_sys_system
/
$ac_sys_release
in
AIX
*
)
BLDSHARED
=
"
\$
(srcdir)/Modules/ld_so_aix
\$
(CC) -bI:
\$
(srcdir)/
Modules/python.exp"
BLDSHARED
=
"
Modules/ld_so_aix
\$
(CC) -bI:
Modules/python.exp"
LDSHARED
=
"
\$
(LIBPL)/ld_so_aix
\$
(CC) -bI:
\$
(LIBPL)/python.exp"
;;
IRIX/5
*
)
LDSHARED
=
"ld -shared"
;;
...
...
configure.ac
View file @
4321db20
...
...
@@ -2409,7 +2409,7 @@ if test -z "$LDSHARED"
then
case $ac_sys_system/$ac_sys_release in
AIX*)
BLDSHARED="
\$(srcdir)/Modules/ld_so_aix \$(CC) -bI:\$(srcdir)/
Modules/python.exp"
BLDSHARED="
Modules/ld_so_aix \$(CC) -bI:
Modules/python.exp"
LDSHARED="\$(LIBPL)/ld_so_aix \$(CC) -bI:\$(LIBPL)/python.exp"
;;
IRIX/5*) LDSHARED="ld -shared";;
...
...
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