sim-card
/
qemu
Archived
10
0
Fork 0

check if specified compiler exists

git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1826 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
bellard 2006-04-23 14:35:23 +00:00
parent 132ea32fae
commit a7350fa109
1 changed files with 5 additions and 0 deletions

5
configure vendored
View File

@ -283,6 +283,11 @@ cc="${cross_prefix}${cc}"
ar="${cross_prefix}${ar}"
strip="${cross_prefix}${strip}"
if [ -z `which $cc` ] ; then
echo "Compiler $cc could not be found"
exit
fi
if test "$mingw32" = "yes" ; then
linux="no"
EXESUF=".exe"