]> granicus.if.org Git - llvm/commitdiff
fix configure+make build
authorRafael Espindola <rafael.espindola@gmail.com>
Thu, 7 Aug 2014 14:38:49 +0000 (14:38 +0000)
committerRafael Espindola <rafael.espindola@gmail.com>
Thu, 7 Aug 2014 14:38:49 +0000 (14:38 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@215116 91177308-0d34-0410-b5e6-96231b3b80d8

lib/ExecutionEngine/Makefile
lib/Target/SystemZ/Makefile
tools/lli/Makefile
tools/llvm-rtdyld/Makefile
unittests/ExecutionEngine/MCJIT/Makefile
unittests/ExecutionEngine/Makefile

index c26e0ada5bc15ef71a5d3dd9785bbcc83aae34c6..cf714324e3b6e7ef84acffad46f960d847e986d8 100644 (file)
@@ -11,7 +11,7 @@ LIBRARYNAME = LLVMExecutionEngine
 
 include $(LEVEL)/Makefile.config
 
-PARALLEL_DIRS = Interpreter JIT MCJIT RuntimeDyld
+PARALLEL_DIRS = Interpreter MCJIT RuntimeDyld
 
 ifeq ($(USE_INTEL_JITEVENTS), 1)
 PARALLEL_DIRS += IntelJITEvents
index 445725bd1e12aa2993386a6efa2a1cbb52dcffdc..732c31725538c56d399899f5c73554a6ef728feb 100644 (file)
@@ -15,7 +15,6 @@ TARGET = SystemZ
 BUILT_SOURCES = SystemZGenRegisterInfo.inc \
                SystemZGenAsmWriter.inc \
                SystemZGenAsmMatcher.inc \
-               SystemZGenCodeEmitter.inc \
                SystemZGenDisassemblerTables.inc \
                SystemZGenInstrInfo.inc \
                SystemZGenDAGISel.inc \
index eca5d833149070f9767b9052f2dcc2b182b0d3c6..94d6f061c946c27a3aa5013f57e534ec43709c6f 100644 (file)
@@ -14,7 +14,7 @@ PARALLEL_DIRS := ChildTarget
 
 include $(LEVEL)/Makefile.config
 
-LINK_COMPONENTS := mcjit jit instrumentation interpreter nativecodegen bitreader asmparser irreader selectiondag native
+LINK_COMPONENTS := mcjit instrumentation interpreter nativecodegen bitreader asmparser irreader selectiondag native
 
 # If Intel JIT Events support is confiured, link against the LLVM Intel JIT
 # Events interface library
index fabdd683a99774c6e74eb015241399917bd6e3f3..9de753ef22ad159aed305f0560d601387be1ef42 100644 (file)
@@ -9,7 +9,7 @@
 
 LEVEL := ../..
 TOOLNAME := llvm-rtdyld
-LINK_COMPONENTS := all-targets support MC object RuntimeDyld JIT debuginfo
+LINK_COMPONENTS := all-targets support MC object RuntimeDyld MCJIT debuginfo
 
 # This tool has no plugins, optimize startup time.
 TOOL_NO_EXPORTS := 1
index c4dd740e05751a524a43aebb790281e049d90324..2822b20cdda26e2a9a4659bf624a2df6e72aad05 100644 (file)
@@ -9,7 +9,7 @@
 
 LEVEL = ../../..
 TESTNAME = MCJIT
-LINK_COMPONENTS := core ipo jit mcjit native support
+LINK_COMPONENTS := core ipo mcjit native support
 
 include $(LEVEL)/Makefile.config
 include $(LLVM_SRC_ROOT)/unittests/Makefile.unittest
index 38e667ff98885f2264a23a53e9c35f96f6786353..8ecb883ba9d7d2949af045e0b4ce1c640030b9da 100644 (file)
@@ -14,7 +14,7 @@ LINK_COMPONENTS :=interpreter
 include $(LEVEL)/Makefile.config
 
 ifeq ($(TARGET_HAS_JIT),1)
-  PARALLEL_DIRS = JIT MCJIT
+  PARALLEL_DIRS = MCJIT
 endif
 
 include $(LLVM_SRC_ROOT)/unittests/Makefile.unittest