Commit 5e692ecdbff27d5a4c9ffdc76fa43d3dc163d119
1 parent
31fca6ab
Remove ppc64h CPUs definitions from the configure script.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3658 c046a42c-6fe2-441c-8c8c-71466251a162
Showing
1 changed file
with
2 additions
and
10 deletions
configure
... | ... | @@ -978,7 +978,6 @@ target_bigendian="no" |
978 | 978 | [ "$target_cpu" = "ppcemb" ] && target_bigendian=yes |
979 | 979 | [ "$target_cpu" = "ppc64" ] && target_bigendian=yes |
980 | 980 | [ "$target_cpu" = "ppc64abi32" ] && target_bigendian=yes |
981 | -[ "$target_cpu" = "ppc64h" ] && target_bigendian=yes | |
982 | 981 | [ "$target_cpu" = "mips" ] && target_bigendian=yes |
983 | 982 | [ "$target_cpu" = "mipsn32" ] && target_bigendian=yes |
984 | 983 | [ "$target_cpu" = "mips64" ] && target_bigendian=yes |
... | ... | @@ -1084,24 +1083,17 @@ elif test "$target_cpu" = "ppcemb" ; then |
1084 | 1083 | echo "#define TARGET_PPCEMB 1" >> $config_h |
1085 | 1084 | elif test "$target_cpu" = "ppc64" ; then |
1086 | 1085 | echo "TARGET_ARCH=ppc64" >> $config_mak |
1087 | - echo "#define TARGET_ARCH \"ppc64\"" >> $config_h | |
1088 | 1086 | echo "TARGET_ABI_DIR=ppc" >> $config_mak |
1087 | + echo "#define TARGET_ARCH \"ppc64\"" >> $config_h | |
1089 | 1088 | echo "#define TARGET_PPC 1" >> $config_h |
1090 | 1089 | echo "#define TARGET_PPC64 1" >> $config_h |
1091 | 1090 | elif test "$target_cpu" = "ppc64abi32" ; then |
1092 | 1091 | echo "TARGET_ARCH=ppc64" >> $config_mak |
1093 | - echo "#define TARGET_ARCH \"ppc64\"" >> $config_h | |
1094 | 1092 | echo "TARGET_ABI_DIR=ppc" >> $config_mak |
1093 | + echo "#define TARGET_ARCH \"ppc64\"" >> $config_h | |
1095 | 1094 | echo "#define TARGET_PPC 1" >> $config_h |
1096 | 1095 | echo "#define TARGET_PPC64 1" >> $config_h |
1097 | 1096 | echo "#define TARGET_ABI32 1" >> $config_h |
1098 | -elif test "$target_cpu" = "ppc64h" ; then | |
1099 | - echo "TARGET_ARCH=ppc64h" >> $config_mak | |
1100 | - echo "#define TARGET_ARCH \"ppc64h\"" >> $config_h | |
1101 | - echo "TARGET_ABI_DIR=ppc" >> $config_mak | |
1102 | - echo "#define TARGET_PPC 1" >> $config_h | |
1103 | - echo "#define TARGET_PPC64 1" >> $config_h | |
1104 | - echo "#define TARGET_PPC64H 1" >> $config_h | |
1105 | 1097 | elif test "$target_cpu" = "x86_64" ; then |
1106 | 1098 | echo "TARGET_ARCH=x86_64" >> $config_mak |
1107 | 1099 | echo "#define TARGET_ARCH \"x86_64\"" >> $config_h | ... | ... |