diff options
author | Doug Kwan <dougkwan@google.com> | 2014-05-29 09:12:21 -0500 |
---|---|---|
committer | Alexander Graf <agraf@suse.de> | 2014-06-16 13:24:40 +0200 |
commit | 9c35126c56de54d0505ac7676ca4699af1d205bf (patch) | |
tree | ce54453f9f3a5be0f0e7ae744236fac6f761d72b | |
parent | e22c357b3ec01c1141969ae81397d60d52e8c87b (diff) |
target-ppc: Add a new user mode target for little-endian PPC64.
Signed-off-by: Doug Kwan <dougkwan@google.com>
Signed-off-by: Tom Musta <tommusta@gmail.com>
Signed-off-by: Alexander Graf <agraf@suse.de>
-rwxr-xr-x | configure | 6 | ||||
-rw-r--r-- | default-configs/ppc64le-linux-user.mak | 2 |
2 files changed, 8 insertions, 0 deletions
@@ -4946,6 +4946,12 @@ case "$target_name" in TARGET_ABI_DIR=ppc gdb_xml_files="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml" ;; + ppc64le) + TARGET_ARCH=ppc64 + TARGET_BASE_ARCH=ppc + TARGET_ABI_DIR=ppc + gdb_xml_files="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml" + ;; ppc64abi32) TARGET_ARCH=ppc64 TARGET_BASE_ARCH=ppc diff --git a/default-configs/ppc64le-linux-user.mak b/default-configs/ppc64le-linux-user.mak new file mode 100644 index 0000000000..4ba4eae6ce --- /dev/null +++ b/default-configs/ppc64le-linux-user.mak @@ -0,0 +1,2 @@ +# Default configuration for ppc64le-linux-user +CONFIG_LIBDECNUMBER=y |