mirror of
https://github.com/python/cpython.git
synced 2025-11-11 14:44:57 +00:00
Bugfix for #775892: added -mno-fused-madd to BASECFLAGS on MacOSX.
This makes test_coercion pass on Panther. Also added a note to NEWS that pythonw works again (it was broken in rc1).
This commit is contained in:
parent
6145a624b8
commit
e004041e96
3 changed files with 8 additions and 3 deletions
|
|
@ -243,6 +243,11 @@ Mac
|
||||||
|
|
||||||
- Fixed two bugs in MacOSX framework handling.
|
- Fixed two bugs in MacOSX framework handling.
|
||||||
|
|
||||||
|
- pythonw did not allow user interaction in 2.3rc1, this has been fixed.
|
||||||
|
|
||||||
|
- Python is now compiled with -mno-fused-madd, making all tests pass
|
||||||
|
on Panther.
|
||||||
|
|
||||||
What's New in Python 2.3 beta 2?
|
What's New in Python 2.3 beta 2?
|
||||||
================================
|
================================
|
||||||
|
|
||||||
|
|
|
||||||
4
configure
vendored
4
configure
vendored
|
|
@ -1,5 +1,5 @@
|
||||||
#! /bin/sh
|
#! /bin/sh
|
||||||
# From configure.in Revision: 1.425 .
|
# From configure.in Revision: 1.426 .
|
||||||
# Guess values for system-dependent variables and create Makefiles.
|
# Guess values for system-dependent variables and create Makefiles.
|
||||||
# Generated by GNU Autoconf 2.53 for python 2.3.
|
# Generated by GNU Autoconf 2.53 for python 2.3.
|
||||||
#
|
#
|
||||||
|
|
@ -3695,7 +3695,7 @@ echo "${ECHO_T}$ac_cv_no_strict_aliasing_ok" >&6
|
||||||
;;
|
;;
|
||||||
# is there any other compiler on Darwin besides gcc?
|
# is there any other compiler on Darwin besides gcc?
|
||||||
Darwin*)
|
Darwin*)
|
||||||
BASECFLAGS="$BASECFLAGS -Wno-long-double -no-cpp-precomp"
|
BASECFLAGS="$BASECFLAGS -Wno-long-double -no-cpp-precomp -mno-fused-madd"
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
;;
|
;;
|
||||||
|
|
|
||||||
|
|
@ -664,7 +664,7 @@ yes)
|
||||||
;;
|
;;
|
||||||
# is there any other compiler on Darwin besides gcc?
|
# is there any other compiler on Darwin besides gcc?
|
||||||
Darwin*)
|
Darwin*)
|
||||||
BASECFLAGS="$BASECFLAGS -Wno-long-double -no-cpp-precomp"
|
BASECFLAGS="$BASECFLAGS -Wno-long-double -no-cpp-precomp -mno-fused-madd"
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
;;
|
;;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue