summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--llvm/include/llvm/module.modulemap7
-rw-r--r--llvm/lib/DWARFLinker/CMakeLists.txt2
2 files changed, 9 insertions, 0 deletions
diff --git a/llvm/include/llvm/module.modulemap b/llvm/include/llvm/module.modulemap
index 25799b64987..05de40698e3 100644
--- a/llvm/include/llvm/module.modulemap
+++ b/llvm/include/llvm/module.modulemap
@@ -152,6 +152,13 @@ module LLVM_DebugInfo_CodeView {
textual header "DebugInfo/CodeView/CodeViewSymbols.def"
}
+module LLVM_DWARFLinker {
+ requires cplusplus
+
+ umbrella "DWARFLinker"
+ module * { export * }
+}
+
module LLVM_ExecutionEngine {
requires cplusplus
diff --git a/llvm/lib/DWARFLinker/CMakeLists.txt b/llvm/lib/DWARFLinker/CMakeLists.txt
index 09610f006fd..f8c61336640 100644
--- a/llvm/lib/DWARFLinker/CMakeLists.txt
+++ b/llvm/lib/DWARFLinker/CMakeLists.txt
@@ -3,4 +3,6 @@ add_llvm_component_library(LLVMDWARFLinker
DWARFLinkerDeclContext.cpp
DWARFLinker.cpp
+ DEPENDS
+ intrinsics_gen
)
OpenPOWER on IntegriCloud