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
e5529591
Commit
e5529591
authored
Dec 13, 2007
by
Thomas Heller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Ran autoconf.
parent
7c862f80
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
configure
configure
+6
-2
No files found.
configure
View file @
e5529591
#! /bin/sh
# From configure.in Revision: 59
242
.
# From configure.in Revision: 59
484
.
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.61 for python 2.6.
#
...
...
@@ -4430,6 +4430,10 @@ then
if
test
"
$CC
"
!=
'g++'
;
then
STRICT_PROTO
=
"-Wstrict-prototypes"
fi
# For gcc 4.x we need to use -fwrapv so lets check if its supported
if
"
$CC
"
-v
--help
2>/dev/null |grep
--
-fwrapv
>
/dev/null
;
then
WRAP
=
"-fwrapv"
fi
case
$ac_cv_prog_cc_g
in
yes
)
if
test
"
$Py_DEBUG
"
=
'true'
;
then
...
...
@@ -4437,7 +4441,7 @@ then
# debug builds.
OPT
=
"-g -Wall
$STRICT_PROTO
"
else
OPT
=
"-g -O3 -Wall
$STRICT_PROTO
"
OPT
=
"-g
$WRAP
-O3 -Wall
$STRICT_PROTO
"
fi
;;
*
)
...
...
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