Date: Mon, 11 Jan 2016 23:35:03 +0000 (UTC) From: Brooks Davis <brooks@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r405816 - in head/devel: llvm33 llvm34 llvm35 Message-ID: <201601112335.u0BNZ3HZ042389@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201601112335.u0BNZ3HZ042389>