aboutsummaryrefslogtreecommitdiff
path: root/libphobos/m4/druntime
diff options
context:
space:
mode:
authorIain Buclaw <ibuclaw@gdcproject.org>2020-04-26 11:32:57 +0200
committerIain Buclaw <ibuclaw@gdcproject.org>2020-04-26 11:33:41 +0200
commit1b0cbe05822f349ef8bc32fc1138d2874b2f469c (patch)
treef3c275ca67f34cbc30ad0494f9a32c69d2f74c4a /libphobos/m4/druntime
parent9887f9d815fbcfe944af6e12fc93175dba882a28 (diff)
downloadgcc-1b0cbe05822f349ef8bc32fc1138d2874b2f469c.zip
gcc-1b0cbe05822f349ef8bc32fc1138d2874b2f469c.tar.gz
gcc-1b0cbe05822f349ef8bc32fc1138d2874b2f469c.tar.bz2
libphobos: Add power*-*-linux* as a supported target
libphobos/ChangeLog: * configure: Regenerate. * configure.tgt: Add power*-*-linux* as a supported target, only building libdruntime. * m4/druntime/cpu.m4 (DRUNTIME_CPU_SOURCES): Add cases for powerpcle and powerpc64le target cpus.
Diffstat (limited to 'libphobos/m4/druntime')
-rw-r--r--libphobos/m4/druntime/cpu.m45
1 files changed, 3 insertions, 2 deletions
diff --git a/libphobos/m4/druntime/cpu.m4 b/libphobos/m4/druntime/cpu.m4
index 4887248..6e88896 100644
--- a/libphobos/m4/druntime/cpu.m4
+++ b/libphobos/m4/druntime/cpu.m4
@@ -17,9 +17,10 @@ AC_DEFUN([DRUNTIME_CPU_SOURCES],
;;
mips*) druntime_target_cpu_parsed="mips"
;;
- powerpc) druntime_target_cpu_parsed="powerpc"
+ powerpc|powerpcle)
+ druntime_target_cpu_parsed="powerpc"
;;
- powerpc64)
+ powerpc64|powerpc64le)
druntime_target_cpu_parsed="powerpc64"
;;
i[[34567]]86|x86_64)