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 0cd4790 commit af04ff2Copy full SHA for af04ff2
2 files changed
configure
@@ -5498,9 +5498,10 @@ then
5498
fi
5499
5500
# Clang also needs -fwrapv
5501
- if test "$CC" = "clang" ; then
5502
- WRAP="-fwrapv"
5503
- fi
+ case $CC in
+ *clang*) WRAP="-fwrapv"
+ ;;
5504
+ esac
5505
5506
case $ac_cv_prog_cc_g in
5507
yes)
configure.in
@@ -928,9 +928,10 @@ then
928
929
930
931
932
933
934
935
936
937
0 commit comments