From afc29f82591985e0a739f3eed04eeb65e0548ff6 Mon Sep 17 00:00:00 2001 From: Juan Quintela Date: Thu, 16 Jul 2009 18:34:13 +0200 Subject: [PATCH] generate TARGET_ARCH for config.h Signed-off-by: Juan Quintela Signed-off-by: Anthony Liguori --- configure | 20 ++------------------ 1 file changed, 2 insertions(+), 18 deletions(-) diff --git a/configure b/configure index 808078fe8..e56ae08b8 100755 --- a/configure +++ b/configure @@ -1894,26 +1894,22 @@ gdb_xml_files="" TARGET_ARCH="$target_arch2" case "$target_arch2" in i386) - echo "#define TARGET_ARCH \"i386\"" >> $config_h echo "#define TARGET_I386 1" >> $config_h target_phys_bits=32 ;; x86_64) echo "TARGET_BASE_ARCH=i386" >> $config_mak - echo "#define TARGET_ARCH \"x86_64\"" >> $config_h echo "#define TARGET_I386 1" >> $config_h echo "#define TARGET_X86_64 1" >> $config_h target_phys_bits=64 ;; alpha) - echo "#define TARGET_ARCH \"alpha\"" >> $config_h echo "#define TARGET_ALPHA 1" >> $config_h target_phys_bits=64 ;; arm|armeb) TARGET_ARCH=arm echo "TARGET_ARCH2=$target_arch2" >> $config_mak - echo "#define TARGET_ARCH \"arm\"" >> $config_h echo "#define TARGET_ARM 1" >> $config_h bflt="yes" target_nptl="yes" @@ -1921,20 +1917,17 @@ case "$target_arch2" in target_phys_bits=32 ;; cris) - echo "#define TARGET_ARCH \"cris\"" >> $config_h echo "#define TARGET_CRIS 1" >> $config_h target_nptl="yes" target_phys_bits=32 ;; m68k) - echo "#define TARGET_ARCH \"m68k\"" >> $config_h echo "#define TARGET_M68K 1" >> $config_h bflt="yes" gdb_xml_files="cf-core.xml cf-fp.xml" target_phys_bits=32 ;; microblaze) - echo "#define TARGET_ARCH \"microblaze\"" >> $config_h echo "#define TARGET_MICROBLAZE 1" >> $config_h bflt="yes" target_nptl="yes" @@ -1943,7 +1936,6 @@ case "$target_arch2" in mips|mipsel) TARGET_ARCH=mips echo "TARGET_ARCH2=$target_arch2" >> $config_mak - echo "#define TARGET_ARCH \"mips\"" >> $config_h echo "#define TARGET_MIPS 1" >> $config_h echo "#define TARGET_ABI_MIPSO32 1" >> $config_h target_nptl="yes" @@ -1953,7 +1945,6 @@ case "$target_arch2" in TARGET_ARCH=mipsn32 echo "TARGET_ARCH2=$target_arch2" >> $config_mak echo "TARGET_BASE_ARCH=mips" >> $config_mak - echo "#define TARGET_ARCH \"mipsn32\"" >> $config_h echo "#define TARGET_MIPS 1" >> $config_h echo "#define TARGET_ABI_MIPSN32 1" >> $config_h target_phys_bits=64 @@ -1962,14 +1953,12 @@ case "$target_arch2" in TARGET_ARCH=mips64 echo "TARGET_ARCH2=$target_arch2" >> $config_mak echo "TARGET_BASE_ARCH=mips" >> $config_mak - echo "#define TARGET_ARCH \"mips64\"" >> $config_h echo "#define TARGET_MIPS 1" >> $config_h echo "#define TARGET_MIPS64 1" >> $config_h echo "#define TARGET_ABI_MIPSN64 1" >> $config_h target_phys_bits=64 ;; ppc) - echo "#define TARGET_ARCH \"ppc\"" >> $config_h echo "#define TARGET_PPC 1" >> $config_h gdb_xml_files="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml" target_phys_bits=32 @@ -1977,7 +1966,6 @@ case "$target_arch2" in ppcemb) echo "TARGET_BASE_ARCH=ppc" >> $config_mak echo "TARGET_ABI_DIR=ppc" >> $config_mak - echo "#define TARGET_ARCH \"ppcemb\"" >> $config_h echo "#define TARGET_PPC 1" >> $config_h echo "#define TARGET_PPCEMB 1" >> $config_h gdb_xml_files="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml" @@ -1986,7 +1974,6 @@ case "$target_arch2" in ppc64) echo "TARGET_BASE_ARCH=ppc" >> $config_mak echo "TARGET_ABI_DIR=ppc" >> $config_mak - echo "#define TARGET_ARCH \"ppc64\"" >> $config_h echo "#define TARGET_PPC 1" >> $config_h echo "#define TARGET_PPC64 1" >> $config_h gdb_xml_files="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml" @@ -1997,7 +1984,6 @@ case "$target_arch2" in echo "TARGET_BASE_ARCH=ppc" >> $config_mak echo "TARGET_ABI_DIR=ppc" >> $config_mak echo "TARGET_ARCH2=ppc64abi32" >> $config_mak - echo "#define TARGET_ARCH \"ppc64\"" >> $config_h echo "#define TARGET_PPC 1" >> $config_h echo "#define TARGET_PPC64 1" >> $config_h echo "#define TARGET_ABI32 1" >> $config_h @@ -2007,20 +1993,17 @@ case "$target_arch2" in sh4|sh4eb) TARGET_ARCH=sh4 echo "TARGET_ARCH2=$target_arch2" >> $config_mak - echo "#define TARGET_ARCH \"sh4\"" >> $config_h echo "#define TARGET_SH4 1" >> $config_h bflt="yes" target_nptl="yes" target_phys_bits=32 ;; sparc) - echo "#define TARGET_ARCH \"sparc\"" >> $config_h echo "#define TARGET_SPARC 1" >> $config_h target_phys_bits=64 ;; sparc64) echo "TARGET_BASE_ARCH=sparc" >> $config_mak - echo "#define TARGET_ARCH \"sparc64\"" >> $config_h echo "#define TARGET_SPARC 1" >> $config_h echo "#define TARGET_SPARC64 1" >> $config_h elfload32="yes" @@ -2031,7 +2014,6 @@ case "$target_arch2" in echo "TARGET_BASE_ARCH=sparc" >> $config_mak echo "TARGET_ABI_DIR=sparc" >> $config_mak echo "TARGET_ARCH2=$target_arch2" >> $config_mak - echo "#define TARGET_ARCH \"sparc64\"" >> $config_h echo "#define TARGET_SPARC 1" >> $config_h echo "#define TARGET_SPARC64 1" >> $config_h echo "#define TARGET_ABI32 1" >> $config_h @@ -2043,6 +2025,8 @@ case "$target_arch2" in ;; esac echo "TARGET_ARCH=$TARGET_ARCH" >> $config_mak +echo "#define TARGET_ARCH \"$TARGET_ARCH\"" >> $config_h + if [ $target_phys_bits -lt $hostlongbits ] ; then target_phys_bits=$hostlongbits fi