mirror of
https://github.com/python/cpython.git
synced 2025-12-09 10:37:17 +00:00
Issue #19019: Change the OS X installer build script to use CFLAGS instead
of OPT for special build options. By setting OPT, some compiler-specific options like -fwrapv were overridden and thus not used, which could result in broken interpreters when building with clang.
This commit is contained in:
parent
5b3582c919
commit
4b7a023149
2 changed files with 6 additions and 1 deletions
|
|
@ -952,7 +952,7 @@ def buildPython():
|
||||||
"--with-universal-archs=%s "
|
"--with-universal-archs=%s "
|
||||||
"%s "
|
"%s "
|
||||||
"LDFLAGS='-g -L%s/libraries/usr/local/lib' "
|
"LDFLAGS='-g -L%s/libraries/usr/local/lib' "
|
||||||
"OPT='-g -O3 -I%s/libraries/usr/local/include' 2>&1"%(
|
"CFLAGS='-g -I%s/libraries/usr/local/include' 2>&1"%(
|
||||||
shellQuote(os.path.join(SRCDIR, 'configure')), shellQuote(SDKPATH),
|
shellQuote(os.path.join(SRCDIR, 'configure')), shellQuote(SDKPATH),
|
||||||
UNIVERSALARCHS,
|
UNIVERSALARCHS,
|
||||||
(' ', '--with-computed-gotos ')[PYTHON_3],
|
(' ', '--with-computed-gotos ')[PYTHON_3],
|
||||||
|
|
|
||||||
|
|
@ -601,6 +601,11 @@ Build
|
||||||
problems in the Apple-supplied Tcl/Tk 8.5 shipped in OS X 10.6
|
problems in the Apple-supplied Tcl/Tk 8.5 shipped in OS X 10.6
|
||||||
and later releases.
|
and later releases.
|
||||||
|
|
||||||
|
- Issue #19019: Change the OS X installer build script to use CFLAGS instead
|
||||||
|
of OPT for special build options. By setting OPT, some compiler-specific
|
||||||
|
options like -fwrapv were overridden and thus not used, which could result
|
||||||
|
in broken interpreters when building with clang.
|
||||||
|
|
||||||
|
|
||||||
What's New in Python 3.3.2?
|
What's New in Python 3.3.2?
|
||||||
===========================
|
===========================
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue