Interim build fix for Makefiles

Looks like some parts still need detangling. Let's see if this holds for now.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@199885 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Alp Toker 2014-01-23 11:26:37 +00:00
parent aaf44af769
commit 1f0d177335
3 changed files with 8 additions and 2 deletions

View File

@ -1,4 +1,5 @@
set(LLVM_LINK_COMPONENTS support)
add_definitions(-DLLI_BUILDING_CHILD)
add_llvm_executable(lli-child-target
ChildTarget.cpp

View File

@ -12,8 +12,10 @@ TOOLNAME := lli-child-target
include $(LEVEL)/Makefile.config
LINK_COMPONENTS :=
LINK_COMPONENTS := support
SOURCES += ../RemoteTarget.cpp
CXXFLAGS += -DLLI_BUILDING_CHILD
SOURCES := ChildTarget.cpp ../RemoteTarget.cpp
include $(LLVM_SRC_ROOT)/Makefile.rules

View File

@ -22,6 +22,8 @@
using namespace llvm;
#ifndef LLI_BUILDING_CHILD
// Static methods
RemoteTarget *RemoteTarget::createRemoteTarget() {
return new RemoteTarget;
@ -43,6 +45,7 @@ bool RemoteTarget::hostSupportsExternalRemoteTarget() {
#endif
}
#endif
////////////////////////////////////////////////////////////////////////////////
// Simulated remote execution