From 1b0cbe05822f349ef8bc32fc1138d2874b2f469c Mon Sep 17 00:00:00 2001 From: Iain Buclaw Date: Sun, 26 Apr 2020 11:32:57 +0200 Subject: 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. --- libphobos/configure | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'libphobos/configure') 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) -- cgit v1.1