llvm-6502/tools/lli/Windows/RPCChannel.inc
Alp Toker 27ce8feb4a Report lli remote IO errors consistently
This enables IO error reports in both the child and server processes.

The scheme still isn't entirely satisfactory and output is jumbled but it beats
having no output at all. This will hopefully unblock ARM support (PR18057).

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@200017 91177308-0d34-0410-b5e6-96231b3b80d8
2014-01-24 17:18:52 +00:00

30 lines
917 B
C++

//=- RPCChannel.inc - LLVM out-of-process JIT execution for Windows --=//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// Implementation of the Windows-specific parts of the RPCChannel class
// which executes JITed code in a separate process from where it was built.
//
//===----------------------------------------------------------------------===//
namespace llvm {
bool RPCChannel::createServer() { return false; }
bool RPCChannel::createClient() { return false; }
bool RPCChannel::WriteBytes(const void *Data, size_t Size) { return false; }
bool RPCChannel::ReadBytes(void *Data, size_t Size) { return false; }
void RPCChannel::Wait() {}
RPCChannel::~RPCChannel() {}
} // namespace llvm