Issue #11149: recent versions of clang require the -fwrapv flag.

This commit is contained in:
Stefan Krah 2011-09-14 15:14:08 +02:00
parent d71bbf9fd5
commit 962055d3c6
2 changed files with 12 additions and 0 deletions

6
configure vendored
View File

@ -5504,6 +5504,12 @@ then
if "$CC" -v --help 2>/dev/null |grep -- -fwrapv > /dev/null; then
WRAP="-fwrapv"
fi
# Clang also needs -fwrapv
if test "$CC" = "clang" ; then
WRAP="-fwrapv"
fi
case $ac_cv_prog_cc_g in
yes)
if test "$Py_DEBUG" = 'true' ; then

View File

@ -926,6 +926,12 @@ then
if "$CC" -v --help 2>/dev/null |grep -- -fwrapv > /dev/null; then
WRAP="-fwrapv"
fi
# Clang also needs -fwrapv
if test "$CC" = "clang" ; then
WRAP="-fwrapv"
fi
case $ac_cv_prog_cc_g in
yes)
if test "$Py_DEBUG" = 'true' ; then