[PATCH] D130377: Move "clang/Basic/TokenKinds.h" into a separate top-level module.
Volodymyr Sapsai via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Fri Jul 22 16:26:54 PDT 2022
This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rG1e4478bbea72: Move "clang/Basic/TokenKinds.h" into a separate top-level module. (authored by vsapsai).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D130377/new/
https://reviews.llvm.org/D130377
Files:
clang/include/clang/module.modulemap
Index: clang/include/clang/module.modulemap
===================================================================
--- clang/include/clang/module.modulemap
+++ clang/include/clang/module.modulemap
@@ -71,10 +71,17 @@
textual header "Basic/RISCVVTypes.def"
textual header "Basic/Sanitizers.def"
textual header "Basic/TargetCXXABI.def"
- textual header "Basic/TokenKinds.def"
module * { export * }
}
+module Clang_Basic_TokenKinds {
+ requires cplusplus
+
+ header "Basic/TokenKinds.h"
+ textual header "Basic/TokenKinds.def"
+
+ export *
+}
module Clang_CodeGen { requires cplusplus umbrella "CodeGen" module * { export * } }
module Clang_Config { requires cplusplus umbrella "Config" module * { export * } }
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D130377.447005.patch
Type: text/x-patch
Size: 729 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20220722/67afff17/attachment.bin>
More information about the cfe-commits
mailing list