summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBaptiste Daroussin <bapt@FreeBSD.org>2016-08-31 06:26:25 +0000
committerBaptiste Daroussin <bapt@FreeBSD.org>2016-08-31 06:26:25 +0000
commitec0cbff1127083a7606886e646ac87e3389517fc (patch)
tree6fda2c40fd61d7d87e03e67aeed4b313799f94f0
parent783d5aaaf92d2873f4b146a7bdb7db336c8afcf9 (diff)
downloadfreebsd-ports-ec0cbff1127083a7606886e646ac87e3389517fc.zip
Disable gold on powerpc*
Submitted by: swills
-rw-r--r--devel/binutils/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/devel/binutils/Makefile b/devel/binutils/Makefile
index 60c63e517218..c14303ce0c29 100644
--- a/devel/binutils/Makefile
+++ b/devel/binutils/Makefile
@@ -75,7 +75,7 @@ NLS_CONFIGURE_ENABLE= nls
.include <bsd.port.pre.mk>
# Actual earliest version may differ slightly
-.if ${ARCH} != ia64 && ${ARCH} != i386 && ${ARCH} != mips && ${ARCH} != mips64 && !defined(PKGNAMEPREFIX) && (${COMPILER_TYPE} == clang && ${COMPILER_VERSION} >= 34 || ${COMPILER_TYPE} == gcc)
+.if ${ARCH} != powerpc && ${ARCH} != powerpc64 ${ARCH} != ia64 && ${ARCH} != i386 && ${ARCH} != mips && ${ARCH} != mips64 && !defined(PKGNAMEPREFIX) && (${COMPILER_TYPE} == clang && ${COMPILER_VERSION} >= 34 || ${COMPILER_TYPE} == gcc)
CONFIGURE_ARGS+= --enable-gold --enable-plugins
PLIST_SUB+= GOLD=""
.else