[PATCH] D22769: Define a Module Map for DebugInfo/MSF

Zachary Turner via llvm-commits llvm-commits at lists.llvm.org
Mon Jul 25 10:59:40 PDT 2016


zturner created this revision.
zturner added a reviewer: aprantl.
zturner added a subscriber: llvm-commits.

Modules build doesn't seem to work on windows with clang-cl, so I can't test this.  Can you confirm that this looks correct?  The reason for the error seems to be that class StreamRef was moved from DebugInfo/CodeView to DebugInfo/Msf.

I don't know why the compiler error still referred to DebugInfo_CodeView

https://reviews.llvm.org/D22769

Files:
  include/llvm/module.modulemap

Index: include/llvm/module.modulemap
===================================================================
--- include/llvm/module.modulemap
+++ include/llvm/module.modulemap
@@ -84,6 +84,13 @@
   module * { export * }
 }
 
+module LLVM_DebugInfo_Msf {
+  requires cplusplus
+  
+  umbrella "DebugInfo/Msf"
+  module * { export * }
+}
+
 module LLVM_DebugInfo_CodeView {
   requires cplusplus
 


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D22769.65381.patch
Type: text/x-patch
Size: 393 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20160725/a44386f2/attachment.bin>


More information about the llvm-commits mailing list