mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-05 01:31:05 +00:00
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:
parent
aaf44af769
commit
1f0d177335
@ -1,4 +1,5 @@
|
||||
set(LLVM_LINK_COMPONENTS support)
|
||||
add_definitions(-DLLI_BUILDING_CHILD)
|
||||
|
||||
add_llvm_executable(lli-child-target
|
||||
ChildTarget.cpp
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user