[llvm] r312515 - [ORC] Exclude RemoteObjectLayer from the ExecutionEngine module, as modules
Lang Hames via llvm-commits
llvm-commits at lists.llvm.org
Mon Sep 4 21:31:14 PDT 2017
Author: lhames
Date: Mon Sep 4 21:31:14 2017
New Revision: 312515
URL: http://llvm.org/viewvc/llvm-project?rev=312515&view=rev
Log:
[ORC] Exclude RemoteObjectLayer from the ExecutionEngine module, as modules
builds seem to be having trouble with it.
http://lab.llvm.org:8011/builders/clang-x86_64-linux-selfhost-modules-2/builds/11401
When trying to link lli-child-target, the linker reports missing symbols for
the 'Name' members of 'rpc::Function<OrcRPCNegotiate, FunctionIdT(std::string)>'
(base class for OrcRPCNegotiate) and 'rpc::Function<OrcRPCResponse, void()>'
(base class for OrcRPCResponse), despite there being definitions for these
immediately below the rpc::Function class template.
This looks like the same bug that bit OrcRemoteTargetClient/Server in r286920.
<rdar://problem/34249745>
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=312515&r1=312514&r2=312515&view=diff
==============================================================================
--- llvm/trunk/include/llvm/module.modulemap (original)
+++ llvm/trunk/include/llvm/module.modulemap Mon Sep 4 21:31:14 2017
@@ -148,6 +148,7 @@ module LLVM_ExecutionEngine {
exclude header "ExecutionEngine/Orc/OrcRemoteTargetRPCAPI.h"
exclude header "ExecutionEngine/Orc/OrcRemoteTargetClient.h"
exclude header "ExecutionEngine/Orc/OrcRemoteTargetServer.h"
+ exclude header "ExecutionEngine/Orc/RemoteObjectLayer.h"
}
module LLVM_Pass {
More information about the llvm-commits
mailing list