From owner-svn-ports-all@freebsd.org Thu Oct 6 18:09:00 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 4F1C5BEC6D3; Thu, 6 Oct 2016 18:09:00 +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 F2CB9857; Thu, 6 Oct 2016 18:08:59 +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 u96I8xdQ003474; Thu, 6 Oct 2016 18:08:59 GMT (envelope-from brooks@FreeBSD.org) Received: (from brooks@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u96I8wVj003471; Thu, 6 Oct 2016 18:08:58 GMT (envelope-from brooks@FreeBSD.org) Message-Id: <201610061808.u96I8wVj003471@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: brooks set sender to brooks@FreeBSD.org using -f From: Brooks Davis Date: Thu, 6 Oct 2016 18:08:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r423430 - in head/devel: llvm37 llvm38 llvm39 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.23 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: Thu, 06 Oct 2016 18:09:00 -0000 Author: brooks Date: Thu Oct 6 18:08:58 2016 New Revision: 423430 URL: https://svnweb.freebsd.org/changeset/ports/423430 Log: Look for ld.gold under LOCALBASE to fix DragonFly builds. Submitted by: marino Modified: head/devel/llvm37/Makefile head/devel/llvm38/Makefile head/devel/llvm39/Makefile Modified: head/devel/llvm37/Makefile ============================================================================== --- head/devel/llvm37/Makefile Thu Oct 6 17:54:10 2016 (r423429) +++ head/devel/llvm37/Makefile Thu Oct 6 18:08:58 2016 (r423430) @@ -2,7 +2,7 @@ PORTNAME= llvm DISTVERSION= 3.7.1 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= devel lang MASTER_SITES= http://llvm.org/${PRE_}releases/${LLVM_RELEASE}/${RCDIR} DISTNAME= ${PORTNAME}-${DISTVERSION}.src @@ -72,7 +72,7 @@ OPENMP_EXTRA_PATCHES= \ ${PATCHDIR}/openmp-patch-tools_openmp_runtime_tools_expand-vars.pl GOLD_DESC= Build the LLVM Gold plugin for LTO GOLD_CMAKE_ON= -DLLVM_BINUTILS_INCDIR=${LOCALBASE}/include -GOLD_BUILD_DEPENDS= ld.gold:devel/binutils +GOLD_BUILD_DEPENDS= ${LOCALBASE}/bin/ld.gold:devel/binutils # Emulate USE_GITHUB's ${WRKSRC_tag} to reduce diffs to ../llvm-devel .for option in CLANG COMPILER_RT EXTRAS LLD LLDB OPENMP Modified: head/devel/llvm38/Makefile ============================================================================== --- head/devel/llvm38/Makefile Thu Oct 6 17:54:10 2016 (r423429) +++ head/devel/llvm38/Makefile Thu Oct 6 18:08:58 2016 (r423430) @@ -2,7 +2,7 @@ PORTNAME= llvm DISTVERSION= 3.8.1 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= devel lang MASTER_SITES= http://llvm.org/${PRE_}releases/${LLVM_RELEASE}/${RCDIR} DISTNAME= ${PORTNAME}-${DISTVERSION}.src @@ -74,7 +74,7 @@ OPENMP_DESC= Install libomp, the LLVM O OPENMP_DISTFILES= openmp-${DISTVERSION}.src${EXTRACT_SUFX} GOLD_DESC= Build the LLVM Gold plugin for LTO GOLD_CMAKE_ON= -DLLVM_BINUTILS_INCDIR=${LOCALBASE}/include -GOLD_BUILD_DEPENDS= ld.gold:devel/binutils +GOLD_BUILD_DEPENDS= ${LOCALBASE}/bin/ld.gold:devel/binutils # Emulate USE_GITHUB's ${WRKSRC_tag} to reduce diffs to ../llvm-devel .for option in CLANG COMPILER_RT EXTRAS LLD LLDB OPENMP Modified: head/devel/llvm39/Makefile ============================================================================== --- head/devel/llvm39/Makefile Thu Oct 6 17:54:10 2016 (r423429) +++ head/devel/llvm39/Makefile Thu Oct 6 18:08:58 2016 (r423430) @@ -2,7 +2,7 @@ PORTNAME= llvm DISTVERSION= 3.9.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel lang MASTER_SITES= http://llvm.org/${PRE_}releases/${LLVM_RELEASE}/${RCDIR} DISTNAME= ${PORTNAME}-${DISTVERSION}.src @@ -77,7 +77,7 @@ EXTRAS_IMPLIES= CLANG EXTRAS_DISTFILES= clang-tools-extra-${DISTVERSION}.src${EXTRACT_SUFX} GOLD_DESC= Build the LLVM Gold plugin for LTO GOLD_CMAKE_ON= -DLLVM_BINUTILS_INCDIR=${LOCALBASE}/include -GOLD_BUILD_DEPENDS= ld.gold:devel/binutils +GOLD_BUILD_DEPENDS= ${LOCALBASE}/bin/ld.gold:devel/binutils LIT_DESC= Install lit and FileCheck test tools LIT_VARS= _USES_PYTHON=python LLD_DESC= Install lld, the LLVM linker