[Lldb-commits] [lldb] 3ed0ce4 - [lldb] Put Host/common headers in a module

Raphael Isemann via lldb-commits lldb-commits at lists.llvm.org
Wed Feb 19 01:48:54 PST 2020


Author: Raphael Isemann
Date: 2020-02-19T10:47:46+01:00
New Revision: 3ed0ce458c3a51b866625ec70e50b0f8556e0d20

URL: https://github.com/llvm/llvm-project/commit/3ed0ce458c3a51b866625ec70e50b0f8556e0d20
DIFF: https://github.com/llvm/llvm-project/commit/3ed0ce458c3a51b866625ec70e50b0f8556e0d20.diff

LOG: [lldb] Put Host/common headers in a module

This directory escaped the modularization effort it seems. Just adding
this to the Host module along with the other common headers, which should
make this code less likely to break under modules and speed up compilation.

Added: 
    

Modified: 
    lldb/include/lldb/module.modulemap

Removed: 
    


################################################################################
diff  --git a/lldb/include/lldb/module.modulemap b/lldb/include/lldb/module.modulemap
index e040df8f913b..e668abe1c6ae 100644
--- a/lldb/include/lldb/module.modulemap
+++ b/lldb/include/lldb/module.modulemap
@@ -55,6 +55,11 @@ module lldb_Host {
   module Time { header "Host/Time.h" export * }
   module XML { header "Host/XML.h" export * }
 
+  module common {
+    umbrella "Host/common"
+    module * { export * }
+  }
+
   export *
 }
 


        


More information about the lldb-commits mailing list