mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 04:30:23 +00:00
Fix linking on Alpha
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29219 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
ba20471c75
commit
74bda2e320
@ -253,8 +253,8 @@ LibTool.Flags := --tag=CXX
|
||||
|
||||
#Make Floating point ieee complient on alpha
|
||||
ifeq ($(ARCH),Alpha)
|
||||
CXX.Flags += -mieee
|
||||
CPP.BaseFlags += -mieee
|
||||
CXX.Flags += -mieee -fPIC
|
||||
CPP.BaseFlags += -mieee -fPIC
|
||||
endif
|
||||
|
||||
#--------------------------------------------------------------------
|
||||
@ -609,7 +609,7 @@ ifeq ($(LLVMLIBS),JIT)
|
||||
Link += -dlopen self
|
||||
|
||||
# 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
|
||||
# ENABLE_X86_JIT on the make command line. If not, it will still be
|
||||
|
@ -10,6 +10,7 @@
|
||||
LEVEL = ../..
|
||||
LIBRARYNAME = LLVMCodeGen
|
||||
PARALLEL_DIRS = SelectionDAG
|
||||
BUILD_ARCHIVE = 1
|
||||
|
||||
include $(LEVEL)/Makefile.common
|
||||
|
||||
|
@ -56,7 +56,7 @@ endif
|
||||
|
||||
USEDLIBS += \
|
||||
LLVMSelectionDAG \
|
||||
LLVMCodeGen \
|
||||
LLVMCodeGen.a \
|
||||
LLVMTarget.a \
|
||||
LLVMipa.a \
|
||||
LLVMTransforms.a \
|
||||
|
Loading…
Reference in New Issue
Block a user