Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d71bbf9 commit 962055dCopy full SHA for 962055d
2 files changed
configure
@@ -5504,6 +5504,12 @@ then
5504
if "$CC" -v --help 2>/dev/null |grep -- -fwrapv > /dev/null; then
5505
WRAP="-fwrapv"
5506
fi
5507
+
5508
+ # Clang also needs -fwrapv
5509
+ if test "$CC" = "clang" ; then
5510
+ WRAP="-fwrapv"
5511
+ fi
5512
5513
case $ac_cv_prog_cc_g in
5514
yes)
5515
if test "$Py_DEBUG" = 'true' ; then
configure.in
@@ -926,6 +926,12 @@ then
926
927
928
929
930
931
932
933
934
935
936
937
0 commit comments