Convert getSymbolSection to return an ErrorOr.
[oota-llvm.git] / lib / ExecutionEngine / Makefile
index 7aab30577066f33ffbb0687c67db1d493d136a6d..e9a5b79ddf62d49dfbbf36c6a4f8aedb0cd906a0 100644 (file)
@@ -1,30 +1,24 @@
+##===- lib/ExecutionEngine/Makefile ------------------------*- Makefile -*-===##
+#
+#                     The LLVM Compiler Infrastructure
+#
+# This file is distributed under the University of Illinois Open Source
+# License. See LICENSE.TXT for details.
+#
+##===----------------------------------------------------------------------===##
 LEVEL = ../..
-TOOLNAME = lli
-PARALLEL_DIRS = Interpreter JIT
-
-# Generic JIT libraries
-JITLIBS   = lli-jit codegen
-ARCHLIBS  =
+LIBRARYNAME = LLVMExecutionEngine
 
-# What the X86 JIT requires
-JITLIBS  += x86
-# X86 doesn't require any ARCHLIBS
+include $(LEVEL)/Makefile.config
 
-# What the Sparc JIT requires
-ifeq ($(ARCH),Sparc)
-JITLIBS  += sparc 
-ARCHLIBS  = sched livevar instrument.a profpaths transformutils.a \
-           bcwriter transforms.a ipo.a ipa.a datastructure.a regalloc \
-           mapping select postopts.a preopts
+PARALLEL_DIRS = Interpreter MCJIT Orc RuntimeDyld
 
+ifeq ($(USE_INTEL_JITEVENTS), 1)
+PARALLEL_DIRS += IntelJITEvents
 endif
 
-USEDLIBS = lli-interpreter $(JITLIBS) $(ARCHLIBS) bcreader vmcore scalaropts.a \
-           analysis.a support.a target.a
-
-# Have gcc tell the linker to export symbols from the program so that
-# dynamically loaded modules can be linked against them.
-#
-TOOLLINKOPTS = -ldl
+ifeq ($(USE_OPROFILE), 1)
+PARALLEL_DIRS += OProfileJIT
+endif
 
-include $(LEVEL)/Makefile.common
+include $(LLVM_SRC_ROOT)/Makefile.rules