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
7f6a4c99
Commit
7f6a4c99
authored
Sep 21, 2010
by
Antoine Pitrou
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue #1633863: Don't ignore $CC under AIX.
parent
e2bae1c3
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
4 deletions
+5
-4
Misc/NEWS
Misc/NEWS
+2
-0
configure
configure
+2
-3
configure.in
configure.in
+1
-1
No files found.
Misc/NEWS
View file @
7f6a4c99
...
...
@@ -214,6 +214,8 @@ Tests
Build
-----
- Issue #1633863: Don't ignore $CC under AIX.
- Issue #9552: Avoid unnecessary rebuild of OpenSSL. (Windows)
- Issue #9810: Compile bzip2 source files in python's project file
...
...
configure
View file @
7f6a4c99
#! /bin/sh
# From configure.in Revision: 84
674
.
# From configure.in Revision: 84
752
.
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.65 for python 3.2.
#
...
...
@@ -3144,7 +3144,7 @@ if test "${with_gcc+set}" = set; then :
else
case
$ac_sys_system
in
AIX
*
)
CC
=
cc_r
AIX
*
)
CC
=
${
CC
:-
xlc_r
}
without_gcc
=
;;
*
)
without_gcc
=
no
;;
esac
...
...
@@ -9230,7 +9230,6 @@ fi
OPT
=
"-DDYNAMIC_ANNOTATIONS_ENABLED=1
$OPT
"
fi
# -I${DLINCLDIR} is added to the compile rule for importdl.o
DLINCLDIR
=
.
...
...
configure.in
View file @
7f6a4c99
...
...
@@ -449,7 +449,7 @@ AC_ARG_WITH(gcc,
without_gcc=$withval;;
esac], [
case $ac_sys_system in
AIX*) CC=
cc_r
AIX*) CC=
${CC:-xlc_r}
without_gcc=;;
*) without_gcc=no;;
esac])
...
...
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