diff options
| author | Reid Spencer <rspencer@reidspencer.com> | 2004-12-08 04:22:47 +0000 |
|---|---|---|
| committer | Reid Spencer <rspencer@reidspencer.com> | 2004-12-08 04:22:47 +0000 |
| commit | 6838b3c245e4ab7145d99dcbbcdb9eb52c1b56ec (patch) | |
| tree | 985e0a2c87288731c3dc5cb4a0ff5854c2dd599d | |
| parent | ca6a649c9d381d1ff9080690834afb69d341e0d8 (diff) | |
| download | bcm5719-llvm-6838b3c245e4ab7145d99dcbbcdb9eb52c1b56ec.tar.gz bcm5719-llvm-6838b3c245e4ab7145d99dcbbcdb9eb52c1b56ec.zip | |
Remove useless -L switch now that gccld -link-as-library bug is fixed.
llvm-svn: 18613
| -rw-r--r-- | llvm/runtime/GCCLibraries/crtend/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/runtime/GCCLibraries/crtend/Makefile b/llvm/runtime/GCCLibraries/crtend/Makefile index be7b93e5a05..2680bb10328 100644 --- a/llvm/runtime/GCCLibraries/crtend/Makefile +++ b/llvm/runtime/GCCLibraries/crtend/Makefile @@ -47,18 +47,18 @@ $(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 $@ -L$(LLVMGCCStdCXXLibDir) + $(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 $@ -L$(LLVMGCCStdCXXLibDir) + $(GenericEHObj) -o $@ # setjmp/longjmp exception handling support runtime. $(ObjDir)/comp_sjljeh.bc: $(SJLJEHObj) $(Echo) Linking $(notdir $@) component... $(Verb) $(GCCLD) -link-as-library \ -internalize-public-api-file=$(BUILD_SRC_DIR)/comp_sjljeh.lst \ - $(SJLJEHObj) -o $@ -L$(LLVMGCCStdCXXLibDir) + $(SJLJEHObj) -o $@ |

