From: bellard Date: Sun, 23 Apr 2006 14:35:23 +0000 (+0000) Subject: check if specified compiler exists X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=a7350fa109d9b6d33f6a0501ed9fc45d0fba27d0;p=qemu.git check if specified compiler exists git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1826 c046a42c-6fe2-441c-8c8c-71466251a162 --- diff --git a/configure b/configure index 6e5073b6f9..3564617759 100755 --- a/configure +++ b/configure @@ -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"