forked from OSchip/llvm-project
parent
7c1ea253ad
commit
2b0baddc33
|
@ -253,8 +253,8 @@ LibTool.Flags := --tag=CXX
|
||||||
|
|
||||||
#Make Floating point ieee complient on alpha
|
#Make Floating point ieee complient on alpha
|
||||||
ifeq ($(ARCH),Alpha)
|
ifeq ($(ARCH),Alpha)
|
||||||
CXX.Flags += -mieee
|
CXX.Flags += -mieee -fPIC
|
||||||
CPP.BaseFlags += -mieee
|
CPP.BaseFlags += -mieee -fPIC
|
||||||
endif
|
endif
|
||||||
|
|
||||||
#--------------------------------------------------------------------
|
#--------------------------------------------------------------------
|
||||||
|
@ -609,7 +609,7 @@ ifeq ($(LLVMLIBS),JIT)
|
||||||
Link += -dlopen self
|
Link += -dlopen self
|
||||||
|
|
||||||
# Generic JIT libraries
|
# Generic JIT libraries
|
||||||
JIT_LIBS := LLVMInterpreter LLVMJIT LLVMCodeGen LLVMExecutionEngine
|
JIT_LIBS := LLVMInterpreter LLVMJIT LLVMCodeGen.a LLVMExecutionEngine
|
||||||
|
|
||||||
# You can enable the X86 JIT on a non-X86 host by setting the flag
|
# You can enable the X86 JIT on a non-X86 host by setting the flag
|
||||||
# ENABLE_X86_JIT on the make command line. If not, it will still be
|
# ENABLE_X86_JIT on the make command line. If not, it will still be
|
||||||
|
|
|
@ -10,6 +10,7 @@
|
||||||
LEVEL = ../..
|
LEVEL = ../..
|
||||||
LIBRARYNAME = LLVMCodeGen
|
LIBRARYNAME = LLVMCodeGen
|
||||||
PARALLEL_DIRS = SelectionDAG
|
PARALLEL_DIRS = SelectionDAG
|
||||||
|
BUILD_ARCHIVE = 1
|
||||||
|
|
||||||
include $(LEVEL)/Makefile.common
|
include $(LEVEL)/Makefile.common
|
||||||
|
|
||||||
|
|
|
@ -56,7 +56,7 @@ endif
|
||||||
|
|
||||||
USEDLIBS += \
|
USEDLIBS += \
|
||||||
LLVMSelectionDAG \
|
LLVMSelectionDAG \
|
||||||
LLVMCodeGen \
|
LLVMCodeGen.a \
|
||||||
LLVMTarget.a \
|
LLVMTarget.a \
|
||||||
LLVMipa.a \
|
LLVMipa.a \
|
||||||
LLVMTransforms.a \
|
LLVMTransforms.a \
|
||||||
|
|
Loading…
Reference in New Issue