summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJohn Baldwin <jhb@FreeBSD.org>2020-01-06 17:36:28 +0000
committerJohn Baldwin <jhb@FreeBSD.org>2020-01-06 17:36:28 +0000
commit20723f186a07f208171524ccb38726e5a336e1cb (patch)
treeaded761b3ffe09254e5ffc144e4672ae82263b9b /Makefile
parent0b2b53a2ea57632fc3e5a21797a578d414a8ff9e (diff)
downloadsrc-test-20723f186a07f208171524ccb38726e5a336e1cb.tar.gz
src-test-20723f186a07f208171524ccb38726e5a336e1cb.zip
Enable powerpc in make tinderbox using clang instead of GCC.
powerpcspe is disabled for now until clang/llvm issues with spe have been fixed. Reviewed by: imp Differential Revision: https://reviews.freebsd.org/D23031
Notes
Notes: svn path=/head/; revision=356419
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 3 insertions, 7 deletions
diff --git a/Makefile b/Makefile
index eebd0e84d28f6..bd690288ec5a1 100644
--- a/Makefile
+++ b/Makefile
@@ -491,15 +491,13 @@ worlds: .PHONY
# honor that most of all.
#
_OBSOLETE_GCC_TARGETS=mips sparc64
-.if defined(MAKE_OBSOLETE_GCC)
-_OBSOLETE_GCC_TARGETS+=powerpc
-.endif
-TARGETS?=amd64 arm arm64 i386 riscv ${_OBSOLETE_GCC_TARGETS}
+TARGETS?=amd64 arm arm64 i386 powerpc riscv ${_OBSOLETE_GCC_TARGETS}
_UNIVERSE_TARGETS= ${TARGETS}
TARGET_ARCHES_arm?= armv6 armv7
TARGET_ARCHES_arm64?= aarch64
TARGET_ARCHES_mips?= mipsel mips mips64el mips64 mipsn32 mipselhf mipshf mips64elhf mips64hf
-TARGET_ARCHES_powerpc?= powerpc powerpc64 powerpcspe
+# powerpcspe excluded until clang fixed
+TARGET_ARCHES_powerpc?= powerpc powerpc64
# riscv64sf excluded due to PR 232085
TARGET_ARCHES_riscv?= riscv64
.for target in ${TARGETS}
@@ -510,12 +508,10 @@ MAKE_PARAMS_riscv?= CROSS_TOOLCHAIN=riscv64-gcc
.if !defined(MAKE_OBSOLETE_GCC)
OBSOLETE_GCC_TARGETS=${_OBSOLETE_GCC_TARGETS}
MAKE_PARAMS_mips?= CROSS_TOOLCHAIN=mips-gcc6
-MAKE_PARAMS_powerpc?= CROSS_TOOLCHAIN=powerpc64-gcc6
MAKE_PARAMS_sparc64?= CROSS_TOOLCHAIN=sparc64-gcc6
.endif
TOOLCHAINS_mips= mips-gcc6
-TOOLCHAINS_powerpc= powerpc64-gcc6
TOOLCHAINS_riscv= riscv64-gcc
TOOLCHAINS_sparc64= sparc64-gcc6