testsh2: allow compiler fallback to gcc
. lets test work in 'pure DESTDIR' environment Change-Id: If7d45f01f20bc6369455d706b5ad47d36946fce3
This commit is contained in:
parent
b2dcc910d4
commit
374af94b2b
1 changed files with 7 additions and 1 deletions
|
@ -20,7 +20,13 @@ OLDPWD=`pwd`
|
|||
export OLDPWD
|
||||
|
||||
# CC="exec cc -wo -F" # nonstandard flags for ACK :-(
|
||||
CC=clang
|
||||
if which clang 2>/dev/null
|
||||
then CC=clang
|
||||
elif which gcc 2>/dev/null
|
||||
then CC=gcc
|
||||
else echo "Can't find a compiler, skipping test"
|
||||
exit 0
|
||||
fi
|
||||
|
||||
ARCH=`arch`
|
||||
|
||||
|
|
Loading…
Reference in a new issue