diff options
author | j_mayer <j_mayer@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-11-17 01:54:45 +0000 |
---|---|---|
committer | j_mayer <j_mayer@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-11-17 01:54:45 +0000 |
commit | 5e692ecdbff27d5a4c9ffdc76fa43d3dc163d119 (patch) | |
tree | 8a9244310bb3fbb1d2ec8b56001c6d418a2057d0 /configure | |
parent | 31fca6ab60f8ee8062bf59d54ba4d88832064ff1 (diff) | |
download | qemu-5e692ecdbff27d5a4c9ffdc76fa43d3dc163d119.zip |
Remove ppc64h CPUs definitions from the configure script.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3658 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 12 |
1 files changed, 2 insertions, 10 deletions
@@ -978,7 +978,6 @@ target_bigendian="no" [ "$target_cpu" = "ppcemb" ] && target_bigendian=yes [ "$target_cpu" = "ppc64" ] && target_bigendian=yes [ "$target_cpu" = "ppc64abi32" ] && target_bigendian=yes -[ "$target_cpu" = "ppc64h" ] && target_bigendian=yes [ "$target_cpu" = "mips" ] && target_bigendian=yes [ "$target_cpu" = "mipsn32" ] && target_bigendian=yes [ "$target_cpu" = "mips64" ] && target_bigendian=yes @@ -1084,24 +1083,17 @@ elif test "$target_cpu" = "ppcemb" ; then echo "#define TARGET_PPCEMB 1" >> $config_h elif test "$target_cpu" = "ppc64" ; then echo "TARGET_ARCH=ppc64" >> $config_mak - echo "#define TARGET_ARCH \"ppc64\"" >> $config_h 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 elif test "$target_cpu" = "ppc64abi32" ; then echo "TARGET_ARCH=ppc64" >> $config_mak - echo "#define TARGET_ARCH \"ppc64\"" >> $config_h 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 echo "#define TARGET_ABI32 1" >> $config_h -elif test "$target_cpu" = "ppc64h" ; then - echo "TARGET_ARCH=ppc64h" >> $config_mak - echo "#define TARGET_ARCH \"ppc64h\"" >> $config_h - echo "TARGET_ABI_DIR=ppc" >> $config_mak - echo "#define TARGET_PPC 1" >> $config_h - echo "#define TARGET_PPC64 1" >> $config_h - echo "#define TARGET_PPC64H 1" >> $config_h elif test "$target_cpu" = "x86_64" ; then echo "TARGET_ARCH=x86_64" >> $config_mak echo "#define TARGET_ARCH \"x86_64\"" >> $config_h |