[llvm] r286930 - [ORC] Work around an apparent modules/linkage issue.

Lang Hames via llvm-commits llvm-commits at lists.llvm.org
Mon Nov 14 18:14:58 PST 2016


Author: lhames
Date: Mon Nov 14 20:14:57 2016
New Revision: 286930

URL: http://llvm.org/viewvc/llvm-project?rev=286930&view=rev
Log:
[ORC] Work around an apparent modules/linkage issue.

<rdar://problem/29247092>


Modified:
    llvm/trunk/include/llvm/module.modulemap

Modified: llvm/trunk/include/llvm/module.modulemap
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/module.modulemap?rev=286930&r1=286929&r2=286930&view=diff
==============================================================================
--- llvm/trunk/include/llvm/module.modulemap (original)
+++ llvm/trunk/include/llvm/module.modulemap Mon Nov 14 20:14:57 2016
@@ -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 {




More information about the llvm-commits mailing list