svn commit: r356258 - in head/devel: llvm-devel llvm33 llvm34
Brooks Davis
brooks at FreeBSD.org
Mon Jun 2 22:59:03 UTC 2014
Author: brooks
Date: Mon Jun 2 22:59:01 2014
New Revision: 356258
URL: http://svnweb.freebsd.org/changeset/ports/356258
QAT: https://qat.redports.org/buildarchive/r356258/
Log:
Modern versions of LLVM will never build on IA64 so mark them as such and
remove attempts to allow IA64 to work.
PR: 188166
Submitted by: mexas at bris.ac.uk
Modified:
head/devel/llvm-devel/Makefile
head/devel/llvm33/Makefile
head/devel/llvm34/Makefile
Modified: head/devel/llvm-devel/Makefile
==============================================================================
--- head/devel/llvm-devel/Makefile Mon Jun 2 22:41:11 2014 (r356257)
+++ head/devel/llvm-devel/Makefile Mon Jun 2 22:59:01 2014 (r356258)
@@ -121,6 +121,8 @@ MAN1SRCS+= bugpoint.1 llc.1 lli.1 llvm-a
PLIST_FILES+= ${MAN1SRCS:S|^|man/man1/|:S|.1$|${LLVM_SUFFIX}.1.gz|}
.endif
+NOT_FOR_ARCH= ia64
+
.include <bsd.port.pre.mk>
.if ${OSVERSION} < 900000
@@ -136,7 +138,7 @@ SVN_REV!= svn info http://llvm.org/svn/l
.endif
.endif
-.if ${ARCH} == "amd64" || ${ARCH} == "ia64"
+.if ${ARCH} == "amd64"
CONFIGURE_ARGS+= --enable-pic --with-pic
.endif
Modified: head/devel/llvm33/Makefile
==============================================================================
--- head/devel/llvm33/Makefile Mon Jun 2 22:41:11 2014 (r356257)
+++ head/devel/llvm33/Makefile Mon Jun 2 22:59:01 2014 (r356258)
@@ -133,6 +133,8 @@ MAN1SRCS+= bugpoint.1 llc.1 lli.1 llvm-a
PLIST_FILES+= ${MAN1SRCS:S|^|man/man1/|:S|.1$|${LLVM_SUFFIX}.1.gz|}
.endif
+NOT_FOR_ARCH= ia64
+
.include <bsd.port.pre.mk>
.if ${ARCH} == "arm"
@@ -141,7 +143,7 @@ BROKEN= Does not compile on arm
BROKEN= does not compile on sparc64
.endif
-.if ${ARCH} == "amd64" || ${ARCH} == "ia64"
+.if ${ARCH} == "amd64"
CONFIGURE_ARGS+= --enable-pic --with-pic
.endif
Modified: head/devel/llvm34/Makefile
==============================================================================
--- head/devel/llvm34/Makefile Mon Jun 2 22:41:11 2014 (r356257)
+++ head/devel/llvm34/Makefile Mon Jun 2 22:59:01 2014 (r356258)
@@ -133,9 +133,11 @@ MAN1SRCS+= bugpoint.1 llc.1 lli.1 llvm-a
PLIST_FILES+= ${MAN1SRCS:S|^|man/man1/|:S|.1$|${LLVM_SUFFIX}.1.gz|}
.endif
+NOT_FOR_ARCH= ia64
+
.include <bsd.port.pre.mk>
-.if ${ARCH} == "amd64" || ${ARCH} == "ia64"
+.if ${ARCH} == "amd64"
CONFIGURE_ARGS+= --enable-pic --with-pic
.endif
More information about the svn-ports-head
mailing list