From owner-svn-src-projects@freebsd.org Fri Dec 22 13:28:12 2017 Return-Path: Delivered-To: svn-src-projects@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 1C80AE9842F for ; Fri, 22 Dec 2017 13:28:12 +0000 (UTC) (envelope-from dim@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 E7F2F76667; Fri, 22 Dec 2017 13:28:11 +0000 (UTC) (envelope-from dim@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vBMDSADj049911; Fri, 22 Dec 2017 13:28:10 GMT (envelope-from dim@FreeBSD.org) Received: (from dim@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vBMDSA5F049907; Fri, 22 Dec 2017 13:28:10 GMT (envelope-from dim@FreeBSD.org) Message-Id: <201712221328.vBMDSA5F049907@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dim set sender to dim@FreeBSD.org using -f From: Dimitry Andric Date: Fri, 22 Dec 2017 13:28:10 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r327078 - in projects/clang600-import: lib/clang/libllvm usr.bin/clang/llvm-dwarfdump usr.bin/clang/llvm-pdbutil X-SVN-Group: projects X-SVN-Commit-Author: dim X-SVN-Commit-Paths: in projects/clang600-import: lib/clang/libllvm usr.bin/clang/llvm-dwarfdump usr.bin/clang/llvm-pdbutil X-SVN-Commit-Revision: 327078 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Dec 2017 13:28:12 -0000 Author: dim Date: Fri Dec 22 13:28:10 2017 New Revision: 327078 URL: https://svnweb.freebsd.org/changeset/base/327078 Log: Next step in updating llvm/clang build glue: make the optional llvm and clang tools build. Modified: projects/clang600-import/lib/clang/libllvm/Makefile projects/clang600-import/usr.bin/clang/llvm-dwarfdump/Makefile projects/clang600-import/usr.bin/clang/llvm-pdbutil/Makefile Modified: projects/clang600-import/lib/clang/libllvm/Makefile ============================================================================== --- projects/clang600-import/lib/clang/libllvm/Makefile Fri Dec 22 11:41:18 2017 (r327077) +++ projects/clang600-import/lib/clang/libllvm/Makefile Fri Dec 22 13:28:10 2017 (r327078) @@ -332,6 +332,7 @@ SRCS_MIN+= CodeGen/UnreachableBlockElim.cpp SRCS_MIN+= CodeGen/VirtRegMap.cpp SRCS_MIN+= CodeGen/WinEHPrepare.cpp SRCS_MIN+= CodeGen/XRayInstrumentation.cpp +SRCS_EXT+= DebugInfo/CodeView/AppendingTypeTableBuilder.cpp SRCS_MIN+= DebugInfo/CodeView/CVSymbolVisitor.cpp SRCS_MIN+= DebugInfo/CodeView/CVTypeVisitor.cpp SRCS_MIN+= DebugInfo/CodeView/CodeViewError.cpp @@ -354,6 +355,7 @@ SRCS_MIN+= DebugInfo/CodeView/Formatters.cpp SRCS_MIN+= DebugInfo/CodeView/GlobalTypeTableBuilder.cpp SRCS_EXT+= DebugInfo/CodeView/LazyRandomTypeCollection.cpp SRCS_MIN+= DebugInfo/CodeView/Line.cpp +SRCS_EXT+= DebugInfo/CodeView/MergingTypeTableBuilder.cpp SRCS_MIN+= DebugInfo/CodeView/RecordName.cpp SRCS_MIN+= DebugInfo/CodeView/RecordSerialization.cpp SRCS_MIN+= DebugInfo/CodeView/SimpleTypeSerializer.cpp @@ -404,6 +406,7 @@ SRCS_EXT+= DebugInfo/PDB/Native/DbiModuleList.cpp SRCS_EXT+= DebugInfo/PDB/Native/DbiStream.cpp SRCS_EXT+= DebugInfo/PDB/Native/DbiStreamBuilder.cpp SRCS_EXT+= DebugInfo/PDB/Native/EnumTables.cpp +SRCS_EXT+= DebugInfo/PDB/Native/GSIStreamBuilder.cpp SRCS_EXT+= DebugInfo/PDB/Native/GlobalsStream.cpp SRCS_EXT+= DebugInfo/PDB/Native/Hash.cpp SRCS_EXT+= DebugInfo/PDB/Native/HashTable.cpp @@ -414,6 +417,8 @@ SRCS_EXT+= DebugInfo/PDB/Native/NamedStreamMap.cpp SRCS_EXT+= DebugInfo/PDB/Native/NativeBuiltinSymbol.cpp SRCS_EXT+= DebugInfo/PDB/Native/NativeCompilandSymbol.cpp SRCS_EXT+= DebugInfo/PDB/Native/NativeEnumModules.cpp +SRCS_EXT+= DebugInfo/PDB/Native/NativeEnumTypes.cpp +SRCS_EXT+= DebugInfo/PDB/Native/NativeEnumSymbol.cpp SRCS_EXT+= DebugInfo/PDB/Native/NativeExeSymbol.cpp SRCS_EXT+= DebugInfo/PDB/Native/NativeRawSymbol.cpp SRCS_EXT+= DebugInfo/PDB/Native/NativeSession.cpp @@ -658,6 +663,7 @@ SRCS_MIN+= Passes/PassBuilder.cpp SRCS_MIN+= ProfileData/Coverage/CoverageMapping.cpp SRCS_MIN+= ProfileData/Coverage/CoverageMappingReader.cpp SRCS_MIN+= ProfileData/Coverage/CoverageMappingWriter.cpp +SRCS_EXT+= ProfileData/GCOV.cpp SRCS_MIN+= ProfileData/InstrProf.cpp SRCS_MIN+= ProfileData/InstrProfReader.cpp SRCS_MIN+= ProfileData/InstrProfWriter.cpp Modified: projects/clang600-import/usr.bin/clang/llvm-dwarfdump/Makefile ============================================================================== --- projects/clang600-import/usr.bin/clang/llvm-dwarfdump/Makefile Fri Dec 22 11:41:18 2017 (r327077) +++ projects/clang600-import/usr.bin/clang/llvm-dwarfdump/Makefile Fri Dec 22 13:28:10 2017 (r327078) @@ -3,6 +3,7 @@ PROG_CXX= llvm-dwarfdump SRCDIR= tools/llvm-dwarfdump +SRCS+= Statistics.cpp SRCS+= llvm-dwarfdump.cpp LIBADD+= z Modified: projects/clang600-import/usr.bin/clang/llvm-pdbutil/Makefile ============================================================================== --- projects/clang600-import/usr.bin/clang/llvm-pdbutil/Makefile Fri Dec 22 11:41:18 2017 (r327077) +++ projects/clang600-import/usr.bin/clang/llvm-pdbutil/Makefile Fri Dec 22 13:28:10 2017 (r327078) @@ -10,6 +10,7 @@ SRCS+= Diff.cpp SRCS+= DiffPrinter.cpp SRCS+= DumpOutputStyle.cpp SRCS+= FormatUtil.cpp +SRCS+= InputFile.cpp SRCS+= LinePrinter.cpp SRCS+= MinimalSymbolDumper.cpp SRCS+= MinimalTypeDumper.cpp