mirror of
https://github.com/python/cpython.git
synced 2025-07-24 11:44:31 +00:00
Merge second fix for issue #11149.
This commit is contained in:
commit
9a17cc3c53
2 changed files with 8 additions and 6 deletions
7
configure
vendored
7
configure
vendored
|
@ -5450,9 +5450,10 @@ then
|
|||
fi
|
||||
|
||||
# Clang also needs -fwrapv
|
||||
if test "$CC" = "clang" ; then
|
||||
WRAP="-fwrapv"
|
||||
fi
|
||||
case $CC in
|
||||
*clang*) WRAP="-fwrapv"
|
||||
;;
|
||||
esac
|
||||
|
||||
case $ac_cv_prog_cc_g in
|
||||
yes)
|
||||
|
|
|
@ -907,9 +907,10 @@ then
|
|||
fi
|
||||
|
||||
# Clang also needs -fwrapv
|
||||
if test "$CC" = "clang" ; then
|
||||
WRAP="-fwrapv"
|
||||
fi
|
||||
case $CC in
|
||||
*clang*) WRAP="-fwrapv"
|
||||
;;
|
||||
esac
|
||||
|
||||
case $ac_cv_prog_cc_g in
|
||||
yes)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue