aboutsummaryrefslogtreecommitdiff
path: root/libphobos/configure
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/configure
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/configure')
-rwxr-xr-xlibphobos/configure5
1 files changed, 3 insertions, 2 deletions
diff --git a/libphobos/configure b/libphobos/configure
index c2b4913..c923417 100755
--- a/libphobos/configure
+++ b/libphobos/configure
@@ -13991,9 +13991,10 @@ fi
;;
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)