svn commit: r349508 - head/share/mk
Leandro Lupori
luporl at FreeBSD.org
Fri Jun 28 15:49:15 UTC 2019
Author: luporl
Date: Fri Jun 28 15:49:14 2019
New Revision: 349508
URL: https://svnweb.freebsd.org/changeset/base/349508
Log:
Fix missing powerpc64 in _LLVM_TARGET_FILT
This change was originally in D20378. Making it in a new diff since it's a
bugfix.
Submitted by: alfredo.junior_eldorado.org.br
Reviewed by: emaste, luporl
Differential Revision: https://reviews.freebsd.org/D20756
Modified:
head/share/mk/src.opts.mk
Modified: head/share/mk/src.opts.mk
==============================================================================
--- head/share/mk/src.opts.mk Fri Jun 28 10:49:04 2019 (r349507)
+++ head/share/mk/src.opts.mk Fri Jun 28 15:49:14 2019 (r349508)
@@ -269,7 +269,7 @@ __LLVM_TARGETS= \
powerpc \
sparc \
x86
-__LLVM_TARGET_FILT= C/(amd64|i386)/x86/:S/sparc64/sparc/:S/arm64/aarch64/
+__LLVM_TARGET_FILT= C/(amd64|i386)/x86/:S/sparc64/sparc/:S/arm64/aarch64/:S/powerpc64/powerpc/
.for __llt in ${__LLVM_TARGETS}
# Default the given TARGET's LLVM_TARGET support to the value of MK_CLANG.
.if ${__TT:${__LLVM_TARGET_FILT}} == ${__llt}
More information about the svn-src-all
mailing list