From owner-svn-ports-all@FreeBSD.ORG Mon Jun 2 22:59:03 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 254E76A6; Mon, 2 Jun 2014 22:59:03 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id ECD062DE9; Mon, 2 Jun 2014 22:59:02 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s52Mx2M7074465; Mon, 2 Jun 2014 22:59:02 GMT (envelope-from brooks@svn.freebsd.org) Received: (from brooks@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s52Mx2tq074459; Mon, 2 Jun 2014 22:59:02 GMT (envelope-from brooks@svn.freebsd.org) Message-Id: <201406022259.s52Mx2tq074459@svn.freebsd.org> From: Brooks Davis Date: Mon, 2 Jun 2014 22:59:02 +0000 (UTC) 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 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 02 Jun 2014 22:59:03 -0000 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 .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 .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 -.if ${ARCH} == "amd64" || ${ARCH} == "ia64" +.if ${ARCH} == "amd64" CONFIGURE_ARGS+= --enable-pic --with-pic .endif