diff options
Diffstat (limited to 'llvm/runtime/GCCLibraries/crtend')
-rw-r--r-- | llvm/runtime/GCCLibraries/crtend/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/runtime/GCCLibraries/crtend/Makefile b/llvm/runtime/GCCLibraries/crtend/Makefile index a65ddc41a248..2680bb103288 100644 --- a/llvm/runtime/GCCLibraries/crtend/Makefile +++ b/llvm/runtime/GCCLibraries/crtend/Makefile @@ -47,14 +47,14 @@ $(ObjDir)/comp_main.bc: $(MainObj) $(Echo) Linking $(notdir $@) component... $(Verb) $(GCCLD) -link-as-library \ -internalize-public-api-file=$(BUILD_SRC_DIR)/comp_main.lst \ - $(MainObj) -o $@ \ + $(MainObj) -o $@ # Generic exception handling support runtime. $(ObjDir)/comp_genericeh.bc: $(GenericEHObj) $(Echo) Linking $(notdir $@) component... $(Verb) $(GCCLD) -link-as-library \ -internalize-public-api-file=$(BUILD_SRC_DIR)/comp_genericeh.lst \ - $(GenericEHObj) -o $@ + $(GenericEHObj) -o $@ # setjmp/longjmp exception handling support runtime. $(ObjDir)/comp_sjljeh.bc: $(SJLJEHObj) |