mirror of
https://github.com/mirror/tinycc.git
synced 2024-12-28 04:00:06 +08:00
macos: detect clang also when called as gcc
This commit is contained in:
parent
032664bf7f
commit
6178e47345
2
configure
vendored
2
configure
vendored
@ -375,7 +375,7 @@ if ! echo "$cc" | grep -q "tcc"; then
|
||||
OPT1="-Wdeclaration-after-statement -fno-strict-aliasing"
|
||||
# we want -Wno- but gcc does not always reject unknown -Wno- options
|
||||
OPT2="-Wpointer-sign -Wsign-compare -Wunused-result -Wformat-truncation"
|
||||
if echo "$cc" | grep -q "clang"; then
|
||||
if $cc --version 2>&1 | grep -q "clang"; then
|
||||
OPT1="$OPT1 -fheinous-gnu-extensions"
|
||||
OPT2="$OPT2 -Wstring-plus-int"
|
||||
fi
|
||||
|
Loading…
Reference in New Issue
Block a user