mirror of
https://github.com/fluencelabs/musl
synced 2025-06-14 23:41:40 +00:00
correct the check for gcc (previous version failed for cross compilers)
This commit is contained in:
2
configure
vendored
2
configure
vendored
@ -148,7 +148,7 @@ test -n "$CC" || { echo "$0: cannot find a C compiler" ; exit 1 ; }
|
|||||||
#
|
#
|
||||||
if test -z "$wrapper" ; then
|
if test -z "$wrapper" ; then
|
||||||
printf "checking whether compiler is gcc... "
|
printf "checking whether compiler is gcc... "
|
||||||
if fnmatch 'gcc*|GCC*' "$("$CC" --version 2>/dev/null)" ; then
|
if fnmatch '*(GCC)*' "$("$CC" --version 2>/dev/null)" ; then
|
||||||
echo yes
|
echo yes
|
||||||
printf "checking whether to build musl-gcc wrapper... "
|
printf "checking whether to build musl-gcc wrapper... "
|
||||||
wrapper=yes
|
wrapper=yes
|
||||||
|
Reference in New Issue
Block a user