diff options
author | Adrian Prantl <aprantl@apple.com> | 2016-07-01 01:16:17 +0000 |
---|---|---|
committer | Adrian Prantl <aprantl@apple.com> | 2016-07-01 01:16:17 +0000 |
commit | 8d62f7fc109b4ec2732c65ffc7eef9e6ce3109c9 (patch) | |
tree | 8167b9210d049b7032558e3f277142687b312f1f | |
parent | 0994bd57fb014d5916d1aa5a914ce4e681365adb (diff) | |
download | bcm5719-llvm-8d62f7fc109b4ec2732c65ffc7eef9e6ce3109c9.tar.gz bcm5719-llvm-8d62f7fc109b4ec2732c65ffc7eef9e6ce3109c9.zip |
Define a module map entry for DebugInfo/CodeView.
This fixes the -fmodules build.
llvm-svn: 274313
-rw-r--r-- | llvm/include/llvm/module.modulemap | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/llvm/include/llvm/module.modulemap b/llvm/include/llvm/module.modulemap index d9b4bb5551b..a906ee19267 100644 --- a/llvm/include/llvm/module.modulemap +++ b/llvm/include/llvm/module.modulemap @@ -84,6 +84,17 @@ module LLVM_DebugInfo_PDB_DIA { module * { export * } } +module LLVM_DebugInfo_CodeView { + requires cplusplus + + umbrella "DebugInfo/CodeView" + module * { export * } + + // These are intended for (repeated) textual inclusion. + textual header "DebugInfo/CodeView/TypeRecords.def" + textual header "DebugInfo/CodeView/CVSymbolTypes.def" +} + module LLVM_ExecutionEngine { requires cplusplus |