Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 2 Jun 2014 22:59:02 +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: r356258 - in head/devel: llvm-devel llvm33 llvm34
Message-ID:  <201406022259.s52Mx2tq074459@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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@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
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201406022259.s52Mx2tq074459>