Remove useless -L switch now that gccld -link-as-library bug is fixed.
authorReid Spencer <rspencer@reidspencer.com>
Wed, 8 Dec 2004 04:22:47 +0000 (04:22 +0000)
committerReid Spencer <rspencer@reidspencer.com>
Wed, 8 Dec 2004 04:22:47 +0000 (04:22 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18613 91177308-0d34-0410-b5e6-96231b3b80d8

runtime/GCCLibraries/crtend/Makefile

index be7b93e5a058e242a71c46a15ef3c03826eb41bf..2680bb103288391129752b2dd28639d074f403f4 100644 (file)
@@ -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 $@