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
34562e11
Commit
34562e11
authored
Oct 17, 2012
by
Trent Nelson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Don't add -OPT:Olimit to CFLAGS on AIX, SunOS, HP-UX or IRIX. It breaks them.
parent
f892597e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
0 deletions
+10
-0
configure
configure
+5
-0
configure.ac
configure.ac
+5
-0
No files found.
configure
View file @
34562e11
...
...
@@ -5751,6 +5751,11 @@ if test $ac_cv_opt_olimit_ok = yes; then
# environment?
Darwin
*
)
;;
# XXX thankfully this useless troublemaker of a flag has been
# eradicated in the 3.x line. For now, make sure it isn't picked
# up by any of our other platforms that use CC.
AIX
*
|
SunOS
*
|
HP-UX
*
|
IRIX
*
)
;;
*
)
BASECFLAGS
=
"
$BASECFLAGS
-OPT:Olimit=0"
;;
...
...
configure.ac
View file @
34562e11
...
...
@@ -1181,6 +1181,11 @@ if test $ac_cv_opt_olimit_ok = yes; then
# environment?
Darwin*)
;;
# XXX thankfully this useless troublemaker of a flag has been
# eradicated in the 3.x line. For now, make sure it isn't picked
# up by any of our other platforms that use CC.
AIX*|SunOS*|HP-UX*|IRIX*)
;;
*)
BASECFLAGS="$BASECFLAGS -OPT:Olimit=0"
;;
...
...
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