[llvm] r235920 - Add missing library dependency in libPDB.

Pete Cooper peter_cooper at apple.com
Mon Apr 27 14:23:13 PDT 2015


Author: pete
Date: Mon Apr 27 16:23:12 2015
New Revision: 235920

URL: http://llvm.org/viewvc/llvm-project?rev=235920&view=rev
Log:
Add missing library dependency in libPDB.

PDB uses COFFObjectFile::getPE32Header which lives in libObject.

Make sure that LLVMBuild.txt reflects this dependency.

Modified:
    llvm/trunk/lib/DebugInfo/PDB/LLVMBuild.txt

Modified: llvm/trunk/lib/DebugInfo/PDB/LLVMBuild.txt
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/DebugInfo/PDB/LLVMBuild.txt?rev=235920&r1=235919&r2=235920&view=diff
==============================================================================
--- llvm/trunk/lib/DebugInfo/PDB/LLVMBuild.txt (original)
+++ llvm/trunk/lib/DebugInfo/PDB/LLVMBuild.txt Mon Apr 27 16:23:12 2015
@@ -19,5 +19,5 @@
 type = Library
 name = DebugInfoPDB
 parent = DebugInfo
-required_libraries = Support
+required_libraries = Object Support
 





More information about the llvm-commits mailing list