[PATCH] D94057: [llvm/Orc] Fix ExecutionEngine module build breakage
Med Ismail Bennani via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon Jan 4 19:56:17 PST 2021
mib created this revision.
mib added reviewers: lhames, teemperor.
mib added a project: LLVM.
mib requested review of this revision.
Herald added a subscriber: llvm-commits.
This patch updates the llvm module map to reflect changes made in
5efc71e119d4eba235209d262e7d171361a0b9be <https://reviews.llvm.org/rG5efc71e119d4eba235209d262e7d171361a0b9be> and fixes the module builds
(`-DLLVM_ENABLE_MODULES=On`).
Signed-off-by: Med Ismail Bennani <medismail.bennani at gmail.com>
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D94057
Files:
llvm/include/llvm/module.modulemap
Index: llvm/include/llvm/module.modulemap
===================================================================
--- llvm/include/llvm/module.modulemap
+++ llvm/include/llvm/module.modulemap
@@ -211,9 +211,9 @@
requires cplusplus
header "ExecutionEngine/Orc/OrcError.h"
- header "ExecutionEngine/Orc/RPC/RPCUtils.h"
- header "ExecutionEngine/Orc/RPC/RPCSerialization.h"
- header "ExecutionEngine/Orc/RPC/RawByteChannel.h"
+ header "ExecutionEngine/Orc/Shared/RPCUtils.h"
+ header "ExecutionEngine/Orc/Shared/Serialization.h"
+ header "ExecutionEngine/Orc/Shared/RawByteChannel.h"
export *
}
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D94057.314494.patch
Type: text/x-patch
Size: 608 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20210105/31e645d6/attachment.bin>
More information about the llvm-commits
mailing list