diff options
author | Lang Hames <lhames@gmail.com> | 2016-11-15 02:14:57 +0000 |
---|---|---|
committer | Lang Hames <lhames@gmail.com> | 2016-11-15 02:14:57 +0000 |
commit | 79d7f70dfd54d4b3c8cd8dbeba77e2474ef9d6c9 (patch) | |
tree | e7ade6f42234274737b0773b4350e5f0246aeb6f | |
parent | 71b55d92c57271c13807e9d3babb75b0a139fcfd (diff) | |
download | bcm5719-llvm-79d7f70dfd54d4b3c8cd8dbeba77e2474ef9d6c9.tar.gz bcm5719-llvm-79d7f70dfd54d4b3c8cd8dbeba77e2474ef9d6c9.zip |
[ORC] Work around an apparent modules/linkage issue.
<rdar://problem/29247092>
llvm-svn: 286930
-rw-r--r-- | llvm/include/llvm/module.modulemap | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/llvm/include/llvm/module.modulemap b/llvm/include/llvm/module.modulemap index 448a7e51a69..a86bc7e7fcb 100644 --- a/llvm/include/llvm/module.modulemap +++ b/llvm/include/llvm/module.modulemap @@ -113,6 +113,14 @@ module LLVM_ExecutionEngine { exclude header "ExecutionEngine/MCJIT.h" exclude header "ExecutionEngine/Interpreter.h" exclude header "ExecutionEngine/OrcMCJITReplacement.h" + + // FIXME: These exclude directives were added as a workaround for + // <rdar://problem/29247092> and should be removed once it is fixed. + exclude header "ExecutionEngine/Orc/RawByteChannel.h" + exclude header "ExecutionEngine/Orc/RPCUtils.h" + exclude header "ExecutionEngine/Orc/OrcRemoteTargetRPCAPI.h" + exclude header "ExecutionEngine/Orc/OrcRemoteTargetClient.h" + exclude header "ExecutionEngine/Orc/OrcRemoteTargetServer.h" } module LLVM_Pass { |