From owner-svn-ports-all@FreeBSD.ORG Fri Feb 28 22:02:15 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 76A97E33; Fri, 28 Feb 2014 22:02:15 +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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 484ED1D01; Fri, 28 Feb 2014 22:02:15 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s1SM2FAL007608; Fri, 28 Feb 2014 22:02:15 GMT (envelope-from brooks@svn.freebsd.org) Received: (from brooks@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s1SM2EqS007604; Fri, 28 Feb 2014 22:02:14 GMT (envelope-from brooks@svn.freebsd.org) Message-Id: <201402282202.s1SM2EqS007604@svn.freebsd.org> From: Brooks Davis Date: Fri, 28 Feb 2014 22:02:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r346579 - in head: devel/llvm-devel devel/llvm34 lang/clang-devel lang/clang34 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.17 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: Fri, 28 Feb 2014 22:02:15 -0000 Author: brooks Date: Fri Feb 28 22:02:14 2014 New Revision: 346579 URL: http://svnweb.freebsd.org/changeset/ports/346579 QAT: https://qat.redports.org/buildarchive/r346579/ Log: Recent versions of clang should work find on sparc64 and arm so mark them not broken. We'll patch if it turns out they have issues. Requested by: rdivacky (sparc64) Modified: head/devel/llvm-devel/Makefile head/devel/llvm34/Makefile head/lang/clang-devel/Makefile head/lang/clang34/Makefile Modified: head/devel/llvm-devel/Makefile ============================================================================== --- head/devel/llvm-devel/Makefile Fri Feb 28 21:45:27 2014 (r346578) +++ head/devel/llvm-devel/Makefile Fri Feb 28 22:02:14 2014 (r346579) @@ -139,9 +139,6 @@ SVN_REV!= svn info http://llvm.org/svn/l .endif .endif -# NB: I don't re-test arches I don't use so this may be dated -BROKEN_sparc64= YES - .if ${ARCH} == "amd64" || ${ARCH} == "ia64" CONFIGURE_ARGS+= --enable-pic --with-pic .endif Modified: head/devel/llvm34/Makefile ============================================================================== --- head/devel/llvm34/Makefile Fri Feb 28 21:45:27 2014 (r346578) +++ head/devel/llvm34/Makefile Fri Feb 28 22:02:14 2014 (r346579) @@ -135,12 +135,6 @@ PLIST_FILES+= ${MAN1SRCS:S|^|man/man1/|: .include -.if ${ARCH} == "arm" -BROKEN= Does not compile on arm -.elif ${ARCH} == "sparc64" -BROKEN= does not compile on sparc64 -.endif - .if ${ARCH} == "amd64" || ${ARCH} == "ia64" CONFIGURE_ARGS+= --enable-pic --with-pic .endif Modified: head/lang/clang-devel/Makefile ============================================================================== --- head/lang/clang-devel/Makefile Fri Feb 28 21:45:27 2014 (r346578) +++ head/lang/clang-devel/Makefile Fri Feb 28 22:02:14 2014 (r346579) @@ -86,9 +86,6 @@ RELTYPE= Release .include "${.CURDIR}/../../devel/llvm-devel/Makefile.svn_rev" -# NB: I don't test arches I don't use so this may be out of date. -BROKEN_sparc64= YES - .if ${PORT_OPTIONS:MASSERTS} pre-fetch: @if [ "`llvm-config${LLVM_SUFFIX} --build-mode`" != ${RELTYPE} ]; then \ Modified: head/lang/clang34/Makefile ============================================================================== --- head/lang/clang34/Makefile Fri Feb 28 21:45:27 2014 (r346578) +++ head/lang/clang34/Makefile Fri Feb 28 22:02:14 2014 (r346579) @@ -85,10 +85,6 @@ RELTYPE= Release .include -.if ${ARCH} == "sparc64" -BROKEN= Does not compile on sparc64 -.endif - .if ${PORT_OPTIONS:MASSERTS} pre-fetch: @if [ "`llvm-config${LLVM_SUFFIX} --build-mode`" != ${RELTYPE} ]; then \