mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-12 13:30:51 +00:00
Fix some bugs in module building that broke llvm-stacker project.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@34099 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
36a987eed0
commit
18464127a4
@ -313,7 +313,7 @@ ifndef TBLGEN
|
||||
endif
|
||||
LLVM_CONFIG := $(LLVMToolDir)/llvm-config
|
||||
ifndef LLVMLD
|
||||
LLVMLD := $(LLVMToolDir)/gccld$(EXEEXT)
|
||||
LLVMLD := $(LLVMToolDir)/llvm-ld$(EXEEXT)
|
||||
endif
|
||||
ifndef LLVMDIS
|
||||
LLVMDIS := $(LLVMToolDir)/llvm-dis$(EXEEXT)
|
||||
@ -1181,12 +1181,12 @@ $(ObjDir)/%.s: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
|
||||
ifdef DEBUG_RUNTIME
|
||||
$(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LLVMAS) $(LOPT)
|
||||
$(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
|
||||
$(Verb) $(LLVMAS) $< -o - | $(LOPT) -std-compile-opts $< -o $@
|
||||
$(Verb) $(LLVMAS) $< -o - | $(LOPT) -std-compile-opts -o $@ -f
|
||||
else
|
||||
$(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LLVMAS) $(LOPT)
|
||||
$(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
|
||||
$(Verb) $(LLVMAS) $< -o - | \
|
||||
$(LOPT) -std-compile-opts -strip-debug $< -o $@
|
||||
$(LOPT) -std-compile-opts -strip-debug -o $@ -f
|
||||
endif
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user