[lld] r194177 - Hopefully fix latent bug where lldCore dependency on lldYAML was not in CMake files

Nick Kledzik kledzik at apple.com
Wed Nov 6 14:56:42 PST 2013


Author: kledzik
Date: Wed Nov  6 16:56:42 2013
New Revision: 194177

URL: http://llvm.org/viewvc/llvm-project?rev=194177&view=rev
Log:
Hopefully fix latent bug where lldCore dependency on lldYAML was not in CMake files

Modified:
    lld/trunk/lib/Core/CMakeLists.txt

Modified: lld/trunk/lib/Core/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/lib/Core/CMakeLists.txt?rev=194177&r1=194176&r2=194177&view=diff
==============================================================================
--- lld/trunk/lib/Core/CMakeLists.txt (original)
+++ lld/trunk/lib/Core/CMakeLists.txt Wed Nov  6 16:56:42 2013
@@ -10,4 +10,7 @@ add_lld_library(lldCore
   SymbolTable.cpp
   )
 
-target_link_libraries(lldCore lldNative)
+target_link_libraries(lldCore 
+  lldNative
+  lldYAML
+  )





More information about the llvm-commits mailing list