svn commit: r405816 - in head/devel: llvm33 llvm34 llvm35
Brooks Davis
brooks at FreeBSD.org
Mon Jan 11 23:35:04 UTC 2016
Author: brooks
Date: Mon Jan 11 23:35:02 2016
New Revision: 405816
URL: https://svnweb.freebsd.org/changeset/ports/405816
Log:
Mark llvm 3.3, 3.4, and 3.5 ports as broken on arm64
Submitted by: andrew
Differential Revision: https://reviews.freebsd.org/D4784
Modified:
head/devel/llvm33/Makefile
head/devel/llvm34/Makefile
head/devel/llvm35/Makefile
Modified: head/devel/llvm33/Makefile
==============================================================================
--- head/devel/llvm33/Makefile Mon Jan 11 23:30:39 2016 (r405815)
+++ head/devel/llvm33/Makefile Mon Jan 11 23:35:02 2016 (r405816)
@@ -137,7 +137,9 @@ NOT_FOR_ARCH= ia64
.include <bsd.port.pre.mk>
-.if ${ARCH} == "arm"
+.if ${ARCH} == "aarch64"
+BROKEN= Does not compile on aarch64
+.elif ${ARCH} == "arm"
BROKEN= Does not compile on arm
.elif ${ARCH} == "sparc64"
BROKEN= does not compile on sparc64
Modified: head/devel/llvm34/Makefile
==============================================================================
--- head/devel/llvm34/Makefile Mon Jan 11 23:30:39 2016 (r405815)
+++ head/devel/llvm34/Makefile Mon Jan 11 23:35:02 2016 (r405816)
@@ -142,6 +142,10 @@ NOT_FOR_ARCH= ia64
.include <bsd.port.pre.mk>
+.if ${ARCH} == "aarch64"
+BROKEN= Does not compile on aarch64
+.endif
+
.if ${ARCH} == "amd64"
CONFIGURE_ARGS+= --enable-pic --with-pic
.endif
Modified: head/devel/llvm35/Makefile
==============================================================================
--- head/devel/llvm35/Makefile Mon Jan 11 23:30:39 2016 (r405815)
+++ head/devel/llvm35/Makefile Mon Jan 11 23:35:02 2016 (r405816)
@@ -142,6 +142,10 @@ NOT_FOR_ARCH= ia64
BROKEN= CMake support only works with clang
.endif
+.if ${ARCH} == "aarch64"
+BROKEN= Does not compile on aarch64
+.endif
+
.if ${ARCH} == "amd64"
CONFIGURE_ARGS+= --enable-pic --with-pic
.endif
More information about the svn-ports-all
mailing list