mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-11-02 22:23:10 +00:00
Don't print out tons of crap
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10259 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -44,7 +44,8 @@ ComponentLibs := $(Components:%=$(BUILD_OBJ_DIR)/BytecodeObj/comp_%.bc)
|
|||||||
|
|
||||||
# We build crtend.a from the four components described in the README.
|
# We build crtend.a from the four components described in the README.
|
||||||
$(CRTEND_A) : $(ComponentLibs)
|
$(CRTEND_A) : $(ComponentLibs)
|
||||||
$(AR) $@ $(ComponentLibs)
|
@echo Building final crtend.a file from components
|
||||||
|
$(VERB) $(AR) $@ $(ComponentLibs)
|
||||||
|
|
||||||
MainObj := $(BUILD_OBJ_DIR)/BytecodeObj/crtend.bc \
|
MainObj := $(BUILD_OBJ_DIR)/BytecodeObj/crtend.bc \
|
||||||
$(BUILD_OBJ_DIR)/BytecodeObj/listend.bc
|
$(BUILD_OBJ_DIR)/BytecodeObj/listend.bc
|
||||||
@@ -54,18 +55,22 @@ CXXEHObj := $(BUILD_OBJ_DIR)/BytecodeObj/C++-Exception.bc
|
|||||||
|
|
||||||
# __main and ctor/dtor support component
|
# __main and ctor/dtor support component
|
||||||
$(BUILD_OBJ_DIR)/BytecodeObj/comp_main.bc: $(MainObj)
|
$(BUILD_OBJ_DIR)/BytecodeObj/comp_main.bc: $(MainObj)
|
||||||
$(LGCCLDPROG) -link-as-library -internalize-public-api-file=$(BUILD_SRC_DIR)/comp_main.lst $(MainObj) -o $@
|
@echo Linking $(notdir $@) component...
|
||||||
|
$(VERB) $(LGCCLDPROG) -link-as-library -internalize-public-api-file=$(BUILD_SRC_DIR)/comp_main.lst $(MainObj) -o $@
|
||||||
|
|
||||||
# Generic exception handling support runtime.
|
# Generic exception handling support runtime.
|
||||||
$(BUILD_OBJ_DIR)/BytecodeObj/comp_genericeh.bc: $(GenericEHObj)
|
$(BUILD_OBJ_DIR)/BytecodeObj/comp_genericeh.bc: $(GenericEHObj)
|
||||||
$(LGCCLDPROG) -link-as-library -internalize-public-api-file=$(BUILD_SRC_DIR)/comp_genericeh.lst $(GenericEHObj) -o $@
|
@echo Linking $(notdir $@) component...
|
||||||
|
$(VERB) $(LGCCLDPROG) -link-as-library -internalize-public-api-file=$(BUILD_SRC_DIR)/comp_genericeh.lst $(GenericEHObj) -o $@
|
||||||
|
|
||||||
# setjmp/longjmp exception handling support runtime.
|
# setjmp/longjmp exception handling support runtime.
|
||||||
$(BUILD_OBJ_DIR)/BytecodeObj/comp_sjljeh.bc: $(SJLJEHObj)
|
$(BUILD_OBJ_DIR)/BytecodeObj/comp_sjljeh.bc: $(SJLJEHObj)
|
||||||
$(LGCCLDPROG) -link-as-library -internalize-public-api-file=$(BUILD_SRC_DIR)/comp_sjljeh.lst $(SJLJEHObj) -o $@
|
@echo Linking $(notdir $@) component...
|
||||||
|
$(VERB) $(LGCCLDPROG) -link-as-library -internalize-public-api-file=$(BUILD_SRC_DIR)/comp_sjljeh.lst $(SJLJEHObj) -o $@
|
||||||
|
|
||||||
# C++ exception handling support runtime.
|
# C++ exception handling support runtime.
|
||||||
$(BUILD_OBJ_DIR)/BytecodeObj/comp_cxxeh.bc: $(CXXEHObj)
|
$(BUILD_OBJ_DIR)/BytecodeObj/comp_cxxeh.bc: $(CXXEHObj)
|
||||||
$(LGCCLDPROG) -link-as-library -internalize-public-api-file=$(BUILD_SRC_DIR)/comp_cxxeh.lst $(CXXEHObj) -o $@
|
@echo Linking $(notdir $@) component...
|
||||||
|
$(VERB) $(LGCCLDPROG) -link-as-library -internalize-public-api-file=$(BUILD_SRC_DIR)/comp_cxxeh.lst $(CXXEHObj) -o $@
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user