From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=41094 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1P5eU9-0007aG-PT for qemu-devel@nongnu.org; Tue, 12 Oct 2010 09:01:49 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1P5eU2-0004f5-SI for qemu-devel@nongnu.org; Tue, 12 Oct 2010 09:01:41 -0400 Received: from mail-qy0-f180.google.com ([209.85.216.180]:60844) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1P5eU2-0004WW-Ol for qemu-devel@nongnu.org; Tue, 12 Oct 2010 09:01:34 -0400 Received: by mail-qy0-f180.google.com with SMTP id 1so4942468qyk.4 for ; Tue, 12 Oct 2010 06:01:34 -0700 (PDT) Sender: Paolo Bonzini From: Paolo Bonzini Date: Tue, 12 Oct 2010 15:00:33 +0200 Message-Id: <1286888457-5033-16-git-send-email-pbonzini@redhat.com> In-Reply-To: <1286888457-5033-1-git-send-email-pbonzini@redhat.com> References: <1286888457-5033-1-git-send-email-pbonzini@redhat.com> Subject: [Qemu-devel] [PATCH 15/39] let --host-cc slide into oblivion List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org It is not really needed anymore since dyngen's death, and the previous patches removed the last occurrences. Signed-off-by: Paolo Bonzini --- configure | 8 +------- create_config | 3 --- 2 files changed, 1 insertions(+), 10 deletions(-) diff --git a/configure b/configure index 068b40a..b387994 100755 --- a/configure +++ b/configure @@ -88,7 +88,6 @@ audio_drv_list="" audio_card_list="ac97 es1370 sb16" audio_possible_cards="ac97 es1370 sb16 cs4231a adlib gus" block_drv_whitelist="" -host_cc="gcc" helper_cflags="" libs_softmmu="" libs_tools="" @@ -510,7 +509,7 @@ for opt do ;; --cc=*) ;; - --host-cc=*) host_cc="$optarg" + --host-cc=*) ;; --make=*) make="$optarg" ;; @@ -818,8 +817,6 @@ echo "Advanced options (experts only):" echo " --source-path=PATH path of source code [$source_path]" echo " --cross-prefix=PREFIX use PREFIX for compile tools [$cross_prefix]" echo " --cc=CC use C compiler CC [$cc]" -echo " --host-cc=CC use C compiler CC [$host_cc] for code run at" -echo " build time" echo " --extra-cflags=CFLAGS append extra C compiler flags QEMU_CFLAGS" echo " --extra-ldflags=LDFLAGS append extra linker flags LDFLAGS" echo " --make=MAKE use specified make [$make]" @@ -2275,7 +2272,6 @@ echo "ELF interp prefix $interp_prefix" fi echo "Source path $source_path" echo "C compiler $cc" -echo "Host C compiler $host_cc" echo "CFLAGS $CFLAGS" echo "QEMU_CFLAGS $QEMU_CFLAGS" echo "LDFLAGS $LDFLAGS" @@ -2638,7 +2634,6 @@ echo "INSTALL_DIR=$install -d -m0755 -p" >> $config_host_mak echo "INSTALL_DATA=$install -m0644 -p" >> $config_host_mak echo "INSTALL_PROG=$install -m0755 -p" >> $config_host_mak echo "CC=$cc" >> $config_host_mak -echo "HOST_CC=$host_cc" >> $config_host_mak echo "AR=$ar" >> $config_host_mak echo "OBJCOPY=$objcopy" >> $config_host_mak echo "LD=$ld" >> $config_host_mak @@ -2648,7 +2643,6 @@ echo "QEMU_CFLAGS=$QEMU_CFLAGS" >> $config_host_mak echo "QEMU_CPPFLAGS=$QEMU_CPPFLAGS" >> $config_host_mak if test "$sparse" = "yes" ; then echo "CC := REAL_CC=\"\$(CC)\" cgcc" >> $config_host_mak - echo "HOST_CC := REAL_CC=\"\$(HOST_CC)\" cgcc" >> $config_host_mak echo "QEMU_CFLAGS += -Wbitwise -Wno-transparent-union -Wno-old-initializer -Wno-non-pointer-null" >> $config_host_mak fi echo "HELPER_CFLAGS=$helper_cflags" >> $config_host_mak diff --git a/create_config b/create_config index 0098e68..f880a7c 100755 --- a/create_config +++ b/create_config @@ -54,9 +54,6 @@ case $line in HOST_USB=*) # do nothing ;; - HOST_CC=*) - # do nothing - ;; HOST_*=y) # configuration name=${line%=*} echo "#define $name 1" -- 1.7.2.3