qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [Patch] configure: check if specified compiler exists


From: Oliver Gerlich
Subject: [Qemu-devel] [Patch] configure: check if specified compiler exists
Date: Sat, 22 Apr 2006 14:45:15 +0200
User-agent: Mozilla Thunderbird 1.0.7 (X11/20051017)

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Hello,

the attached patch adds a check to configure to see whether the compiler
really exists. If configure is called with --cc , but the given compiler
doesn't exist, configure currently fails without giving a good reason.

(In my case I ran "./configure --cc=gcc-3.4" but gcc-3.4 doesn't exist
on the system; configure then told me that it couldn't find SDL, without
hinting at the real reason. The little notice that the endian check
failed as well escaped my eyes :-)

Regards,
Oliver Gerlich
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.2.2 (GNU/Linux)

iD8DBQFESiVaTFOM6DcNJ6cRAo0uAJ0TJF7sFxTg54uh6yHUt83CsusIugCg0GX6
AmFu4u1SAAT3DIl3vwmIvfY=
=3dbm
-----END PGP SIGNATURE-----
--- configure-old       2006-04-17 15:57:12.000000000 +0200
+++ configure   2006-04-22 14:37:43.000000000 +0200
@@ -283,6 +283,11 @@
 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"

reply via email to

[Prev in Thread] Current Thread [Next in Thread]