All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [Patch] configure: check if specified compiler exists
@ 2006-04-22 12:45 Oliver Gerlich
  0 siblings, 0 replies; only message in thread
From: Oliver Gerlich @ 2006-04-22 12:45 UTC (permalink / raw)
  To: qemu-devel

[-- Attachment #1: Type: text/plain, Size: 736 bytes --]

-----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-----

[-- Attachment #2: check-cc.patch --]
[-- Type: text/x-patch, Size: 347 bytes --]

--- 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"

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2006-04-22 12:45 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-04-22 12:45 [Qemu-devel] [Patch] configure: check if specified compiler exists Oliver Gerlich

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.