From: Paolo Bonzini Date: Thu, 23 Dec 2010 10:43:48 +0000 (+0100) Subject: default compilation tools to environment variables X-Git-Tag: Tizen_Studio_1.3_Release_p2.3.1~3794 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9dc9e36e2b913ff7f3d4ec756386285c7d366fde;p=sdk%2Femulator%2Fqemu.git default compilation tools to environment variables Signed-off-by: Paolo Bonzini Signed-off-by: Blue Swirl --- diff --git a/configure b/configure index 438219bf3e..fa6835919d 100755 --- a/configure +++ b/configure @@ -74,19 +74,13 @@ interp_prefix="/usr/gnemul/qemu-%M" static="no" sparc_cpu="" cross_prefix="" -cc="gcc" audio_drv_list="" audio_card_list="ac97 es1370 sb16 hda" audio_possible_cards="ac97 es1370 sb16 cs4231a adlib gus hda" block_drv_whitelist="" host_cc="gcc" -ar="ar" make="make" install="install" -objcopy="objcopy" -ld="ld" -strip="strip" -windres="windres" helper_cflags="" libs_softmmu="" libs_tools="" @@ -100,7 +94,7 @@ for opt do case "$opt" in --cross-prefix=*) cross_prefix="$optarg" ;; - --cc=*) cc="$optarg" + --cc=*) CC="$optarg" ;; --cpu=*) cpu="$optarg" ;; @@ -129,12 +123,12 @@ done # Using uname is really, really broken. Once we have the right set of checks # we can eliminate it's usage altogether -cc="${cross_prefix}${cc}" -ar="${cross_prefix}${ar}" -objcopy="${cross_prefix}${objcopy}" -ld="${cross_prefix}${ld}" -strip="${cross_prefix}${strip}" -windres="${cross_prefix}${windres}" +cc="${cross_prefix}${CC-gcc}" +ar="${cross_prefix}${AR-ar}" +objcopy="${cross_prefix}${OBJCOPY-objcopy}" +ld="${cross_prefix}${LD-ld}" +strip="${cross_prefix}${STRIP-strip}" +windres="${cross_prefix}${WINDRES-windres}" # default flags for all hosts QEMU_CFLAGS="-fno-strict-aliasing $QEMU_CFLAGS"