diff options
author | j_mayer <j_mayer@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-10-18 20:51:49 +0000 |
---|---|---|
committer | j_mayer <j_mayer@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-10-18 20:51:49 +0000 |
commit | f85e9a6870c7e96c2748ec0c40e04c00600189ae (patch) | |
tree | f8780a9cb5415105ad4442ff9d6692ac5fda85f7 /configure | |
parent | e85e7c6ea411c42e24e6e7b8ff5cdd99faae317a (diff) |
Use TARGET_ABI_DIR feature to unify PowerPC and PowerPC 64 definitions.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3410 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -1048,6 +1048,7 @@ elif test "$target_cpu" = "ppcemb" ; then 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_PPC 1" >> $config_h echo "#define TARGET_PPC64 1" >> $config_h elif test "$target_cpu" = "ppc64abi32" ; then @@ -1060,6 +1061,7 @@ elif test "$target_cpu" = "ppc64abi32" ; then 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 |