From owner-svn-src-head@freebsd.org Wed Jun 20 16:10:12 2018 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6B98C1021A5B; Wed, 20 Jun 2018 16:10:12 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 0B8BB82369; Wed, 20 Jun 2018 16:10:12 +0000 (UTC) (envelope-from bdrewery@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 95C7424751; Wed, 20 Jun 2018 16:10:11 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5KGABQ2013985; Wed, 20 Jun 2018 16:10:11 GMT (envelope-from bdrewery@FreeBSD.org) Received: (from bdrewery@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5KGABGb013984; Wed, 20 Jun 2018 16:10:11 GMT (envelope-from bdrewery@FreeBSD.org) Message-Id: <201806201610.w5KGABGb013984@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bdrewery set sender to bdrewery@FreeBSD.org using -f From: Bryan Drewery Date: Wed, 20 Jun 2018 16:10:11 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r335449 - head/lib/clang/libllvm X-SVN-Group: head X-SVN-Commit-Author: bdrewery X-SVN-Commit-Paths: head/lib/clang/libllvm X-SVN-Commit-Revision: 335449 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 16:10:12 -0000 Author: bdrewery Date: Wed Jun 20 16:10:10 2018 New Revision: 335449 URL: https://svnweb.freebsd.org/changeset/base/335449 Log: Fix sources needed for lld. lld always needs these DWARF sources, as well as other default and extra tools. XDL seems to be the best fit list. Remove MK_LLD_IS_LD check from SRCS_MIW which is now reduced to just a few files for llvm-objdump. Sponsored by: Dell EMC Differential Revision: https://reviews.freebsd.org/D15915 Modified: head/lib/clang/libllvm/Makefile Modified: head/lib/clang/libllvm/Makefile ============================================================================== --- head/lib/clang/libllvm/Makefile Wed Jun 20 16:10:07 2018 (r335448) +++ head/lib/clang/libllvm/Makefile Wed Jun 20 16:10:10 2018 (r335449) @@ -371,30 +371,30 @@ SRCS_MIN+= DebugInfo/CodeView/TypeIndexDiscovery.cpp SRCS_MIN+= DebugInfo/CodeView/TypeRecordMapping.cpp SRCS_MIN+= DebugInfo/CodeView/TypeStreamMerger.cpp SRCS_MIN+= DebugInfo/CodeView/TypeTableCollection.cpp -SRCS_MIW+= DebugInfo/DWARF/DWARFAbbreviationDeclaration.cpp -SRCS_MIW+= DebugInfo/DWARF/DWARFAcceleratorTable.cpp -SRCS_MIW+= DebugInfo/DWARF/DWARFCompileUnit.cpp -SRCS_MIW+= DebugInfo/DWARF/DWARFContext.cpp -SRCS_MIW+= DebugInfo/DWARF/DWARFDataExtractor.cpp -SRCS_MIW+= DebugInfo/DWARF/DWARFDebugAbbrev.cpp -SRCS_MIW+= DebugInfo/DWARF/DWARFDebugArangeSet.cpp -SRCS_MIW+= DebugInfo/DWARF/DWARFDebugAranges.cpp -SRCS_MIW+= DebugInfo/DWARF/DWARFDebugFrame.cpp -SRCS_MIW+= DebugInfo/DWARF/DWARFDebugInfoEntry.cpp -SRCS_MIW+= DebugInfo/DWARF/DWARFDebugLine.cpp -SRCS_MIW+= DebugInfo/DWARF/DWARFDebugLoc.cpp -SRCS_MIW+= DebugInfo/DWARF/DWARFDebugMacro.cpp -SRCS_MIW+= DebugInfo/DWARF/DWARFDebugPubTable.cpp -SRCS_MIW+= DebugInfo/DWARF/DWARFDebugRangeList.cpp -SRCS_MIW+= DebugInfo/DWARF/DWARFDie.cpp -SRCS_MIW+= DebugInfo/DWARF/DWARFExpression.cpp -SRCS_MIW+= DebugInfo/DWARF/DWARFFormValue.cpp -SRCS_MIW+= DebugInfo/DWARF/DWARFGdbIndex.cpp -SRCS_MIW+= DebugInfo/DWARF/DWARFTypeUnit.cpp -SRCS_MIW+= DebugInfo/DWARF/DWARFUnit.cpp -SRCS_MIW+= DebugInfo/DWARF/DWARFUnitIndex.cpp -SRCS_MIW+= DebugInfo/DWARF/DWARFVerifier.cpp -SRCS_MIW+= DebugInfo/DWARF/SyntaxHighlighting.cpp +SRCS_XDL+= DebugInfo/DWARF/DWARFAbbreviationDeclaration.cpp +SRCS_XDL+= DebugInfo/DWARF/DWARFAcceleratorTable.cpp +SRCS_XDL+= DebugInfo/DWARF/DWARFCompileUnit.cpp +SRCS_XDL+= DebugInfo/DWARF/DWARFContext.cpp +SRCS_XDL+= DebugInfo/DWARF/DWARFDataExtractor.cpp +SRCS_XDL+= DebugInfo/DWARF/DWARFDebugAbbrev.cpp +SRCS_XDL+= DebugInfo/DWARF/DWARFDebugArangeSet.cpp +SRCS_XDL+= DebugInfo/DWARF/DWARFDebugAranges.cpp +SRCS_XDL+= DebugInfo/DWARF/DWARFDebugFrame.cpp +SRCS_XDL+= DebugInfo/DWARF/DWARFDebugInfoEntry.cpp +SRCS_XDL+= DebugInfo/DWARF/DWARFDebugLine.cpp +SRCS_XDL+= DebugInfo/DWARF/DWARFDebugLoc.cpp +SRCS_XDL+= DebugInfo/DWARF/DWARFDebugMacro.cpp +SRCS_XDL+= DebugInfo/DWARF/DWARFDebugPubTable.cpp +SRCS_XDL+= DebugInfo/DWARF/DWARFDebugRangeList.cpp +SRCS_XDL+= DebugInfo/DWARF/DWARFDie.cpp +SRCS_XDL+= DebugInfo/DWARF/DWARFExpression.cpp +SRCS_XDL+= DebugInfo/DWARF/DWARFFormValue.cpp +SRCS_XDL+= DebugInfo/DWARF/DWARFGdbIndex.cpp +SRCS_XDL+= DebugInfo/DWARF/DWARFTypeUnit.cpp +SRCS_XDL+= DebugInfo/DWARF/DWARFUnit.cpp +SRCS_XDL+= DebugInfo/DWARF/DWARFUnitIndex.cpp +SRCS_XDL+= DebugInfo/DWARF/DWARFVerifier.cpp +SRCS_XDL+= DebugInfo/DWARF/SyntaxHighlighting.cpp SRCS_MIN+= DebugInfo/MSF/MSFBuilder.cpp SRCS_MIN+= DebugInfo/MSF/MSFCommon.cpp SRCS_MIN+= DebugInfo/MSF/MSFError.cpp @@ -1275,7 +1275,7 @@ SRCS_EXT+= Transforms/Vectorize/Vectorize.cpp SRCS_EXT+= XRay/InstrumentationMap.cpp SRCS_ALL+= ${SRCS_MIN} -.if !defined(TOOLS_PREFIX) || ${MK_LLD_IS_LD} != "no" +.if !defined(TOOLS_PREFIX) SRCS_ALL+= ${SRCS_MIW} .endif .if ${MK_CLANG_EXTRAS} != "no"