[llvm-branch-commits] [llvm] 854b861 - [llvm/Orc] Fix ExecutionEngine module build breakage
Med Ismail Bennani via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Mon Jan 4 20:38:48 PST 2021
Author: Med Ismail Bennani
Date: 2021-01-05T05:33:44+01:00
New Revision: 854b861881a28fda6dd9601cc07b54822ce5d00d
URL: https://github.com/llvm/llvm-project/commit/854b861881a28fda6dd9601cc07b54822ce5d00d
DIFF: https://github.com/llvm/llvm-project/commit/854b861881a28fda6dd9601cc07b54822ce5d00d.diff
LOG: [llvm/Orc] Fix ExecutionEngine module build breakage
This patch updates the llvm module map to reflect changes made in
`5efc71e119d4eba235209d262e7d171361a0b9be` and fixes the module builds
(`-DLLVM_ENABLE_MODULES=On`).
Differential Revision: https://reviews.llvm.org/D94057
Signed-off-by: Med Ismail Bennani <medismail.bennani at gmail.com>
Added:
Modified:
llvm/include/llvm/module.modulemap
Removed:
################################################################################
diff --git a/llvm/include/llvm/module.modulemap b/llvm/include/llvm/module.modulemap
index 0fd63b00fd0d..51a4a3d5eb3a 100644
--- a/llvm/include/llvm/module.modulemap
+++ b/llvm/include/llvm/module.modulemap
@@ -211,9 +211,9 @@ module LLVM_OrcSupport {
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 *
}
More information about the llvm-branch-commits
mailing list