From owner-svn-ports-all@freebsd.org Tue Feb 23 20:21:38 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DDDB0AB13F8; Tue, 23 Feb 2016 20:21:38 +0000 (UTC) (envelope-from brooks@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 A9B2E1D8F; Tue, 23 Feb 2016 20:21:38 +0000 (UTC) (envelope-from brooks@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u1NKLbJf022494; Tue, 23 Feb 2016 20:21:37 GMT (envelope-from brooks@FreeBSD.org) Received: (from brooks@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u1NKLbpq022493; Tue, 23 Feb 2016 20:21:37 GMT (envelope-from brooks@FreeBSD.org) Message-Id: <201602232021.u1NKLbpq022493@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: brooks set sender to brooks@FreeBSD.org using -f From: Brooks Davis Date: Tue, 23 Feb 2016 20:21:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r409443 - head/devel/llvm-devel 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.20 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: Tue, 23 Feb 2016 20:21:39 -0000 Author: brooks Date: Tue Feb 23 20:21:37 2016 New Revision: 409443 URL: https://svnweb.freebsd.org/changeset/ports/409443 Log: LLD also doesn't build on 9 due to broken C++11 support. Modified: head/devel/llvm-devel/Makefile Modified: head/devel/llvm-devel/Makefile ============================================================================== --- head/devel/llvm-devel/Makefile Tue Feb 23 20:17:56 2016 (r409442) +++ head/devel/llvm-devel/Makefile Tue Feb 23 20:21:37 2016 (r409443) @@ -154,12 +154,6 @@ _USES_PYTHON= python LIT_COMMANDS= lit llvm-lit FileCheck .endif -.if ${PORT_OPTIONS:MLLD} -COMMANDS+= lld \ - lld-link -PORTDOCS+= lld -.endif - .if ${PORT_OPTIONS:MLLDB} COMMANDS+= lldb \ lldb-argdumper \ @@ -196,10 +190,19 @@ PORTDOCS+= clang-tools .endif .endif +.if ${PORT_OPTIONS:MLLD} +.if ${OPSYS} != "FreeBSD" || ${COMPILER_TYPE} == clang +COMMANDS+= lld \ + lld-link +PORTDOCS+= lld +.endif +.endif + .if ${OPSYS} == "FreeBSD" && ${COMPILER_TYPE} != clang # Evil hack around gcc48 not providing a usable c++11 environment on 9.x PLIST_SUB:= ${PLIST_SUB:NEXTRAS=*} EXTRAS="@comment " PLIST_SUB:= ${PLIST_SUB:NLLDB=*} LLDB="@comment " +PLIST_SUB:= ${PLIST_SUB:NLLD=*} LLD="@comment " .endif .if ${PORT_OPTIONS:MLLDB} && ${PYTHON_REL} >= 3000 @@ -215,7 +218,9 @@ post-extract-EXTRAS-on: .endif post-extract-LLD-on: +.if ${OPSYS} != "FreeBSD" || ${COMPILER_TYPE} == clang ${MV} ${WRKSRC_lld} ${PATCH_WRKSRC}/tools/lld +.endif post-extract-LLDB-on: .if ${OPSYS} != "FreeBSD" || ${COMPILER_TYPE} == clang