From 3ed0ce458c3a51b866625ec70e50b0f8556e0d20 Mon Sep 17 00:00:00 2001 From: Raphael Isemann Date: Wed, 19 Feb 2020 10:47:37 +0100 Subject: [PATCH] [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. --- lldb/include/lldb/module.modulemap | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lldb/include/lldb/module.modulemap b/lldb/include/lldb/module.modulemap index e040df8..e668abe 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 * } -- 2.7.4