[Lldb-commits] [lldb] r223437 - Added CMake support so all the Clang modules code

Sean Callanan scallanan at apple.com
Thu Dec 4 17:31:55 PST 2014


Author: spyffe
Date: Thu Dec  4 19:31:55 2014
New Revision: 223437

URL: http://llvm.org/viewvc/llvm-project?rev=223437&view=rev
Log:
Added CMake support so all the Clang modules code
will at least be built by non-OS X builders. This
should head off some build breakage at the pass.

Modified:
    lldb/trunk/source/Expression/CMakeLists.txt
    lldb/trunk/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/CMakeLists.txt

Modified: lldb/trunk/source/Expression/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Expression/CMakeLists.txt?rev=223437&r1=223436&r2=223437&view=diff
==============================================================================
--- lldb/trunk/source/Expression/CMakeLists.txt (original)
+++ lldb/trunk/source/Expression/CMakeLists.txt Thu Dec  4 19:31:55 2014
@@ -9,6 +9,7 @@ add_lldb_library(lldbExpression
   ClangExpressionParser.cpp
   ClangExpressionVariable.cpp
   ClangFunction.cpp
+  ClangModulesDeclVendor.cpp
   ClangPersistentVariables.cpp
   ClangUserExpression.cpp
   ClangUtilityFunction.cpp

Modified: lldb/trunk/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/CMakeLists.txt?rev=223437&r1=223436&r2=223437&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/CMakeLists.txt (original)
+++ lldb/trunk/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/CMakeLists.txt Thu Dec  4 19:31:55 2014
@@ -5,7 +5,7 @@ add_lldb_library(lldbPluginAppleObjCRunt
   AppleObjCRuntimeV1.cpp
   AppleObjCRuntimeV2.cpp
   AppleObjCTrampolineHandler.cpp
-  AppleObjCTypeVendor.cpp
+  AppleObjCDeclVendor.cpp
   AppleThreadPlanStepThroughObjCTrampoline.cpp
   AppleObjCClassDescriptorV2.cpp
   AppleObjCTypeEncodingParser.cpp





More information about the lldb-commits mailing list