summaryrefslogtreecommitdiffstats
path: root/lldb
diff options
context:
space:
mode:
Diffstat (limited to 'lldb')
-rw-r--r--lldb/source/Plugins/ExpressionParser/Clang/CMakeLists.txt4
-rw-r--r--lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/CMakeLists.txt4
2 files changed, 8 insertions, 0 deletions
diff --git a/lldb/source/Plugins/ExpressionParser/Clang/CMakeLists.txt b/lldb/source/Plugins/ExpressionParser/Clang/CMakeLists.txt
index e18dde6b700..3bdbf3b2c0e 100644
--- a/lldb/source/Plugins/ExpressionParser/Clang/CMakeLists.txt
+++ b/lldb/source/Plugins/ExpressionParser/Clang/CMakeLists.txt
@@ -13,3 +13,7 @@ add_lldb_library(lldbPluginExpressionParserClang
ClangUtilityFunction.cpp
IRForTarget.cpp
)
+
+if(NOT LLDB_BUILT_STANDALONE)
+ add_dependencies(lldbPluginExpressionParserClang intrinsics_gen)
+endif()
diff --git a/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/CMakeLists.txt b/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/CMakeLists.txt
index 7adfb0eb777..fb06604c6af 100644
--- a/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/CMakeLists.txt
+++ b/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/CMakeLists.txt
@@ -3,3 +3,7 @@ add_lldb_library(lldbPluginRenderScriptRuntime
RenderScriptExpressionOpts.cpp
RenderScriptx86ABIFixups.cpp
)
+
+if(NOT LLDB_BUILT_STANDALONE)
+ add_dependencies(lldbPluginRenderScriptRuntime intrinsics_gen)
+endif()
OpenPOWER on IntegriCloud