summaryrefslogtreecommitdiff
path: root/runtime
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2004-12-08 04:22:47 +0000
committerReid Spencer <rspencer@reidspencer.com>2004-12-08 04:22:47 +0000
commit8f4102d33fbacfe55cef0542f2639ad96d7eac81 (patch)
tree90840c024e714b61e0de737ce846dfdfd53493c2 /runtime
parent57ebabe9dcc584e360ba0d162935df55c40bf788 (diff)
downloadllvm-8f4102d33fbacfe55cef0542f2639ad96d7eac81.tar.gz
llvm-8f4102d33fbacfe55cef0542f2639ad96d7eac81.tar.bz2
llvm-8f4102d33fbacfe55cef0542f2639ad96d7eac81.tar.xz
Remove useless -L switch now that gccld -link-as-library bug is fixed.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18613 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'runtime')
-rw-r--r--runtime/GCCLibraries/crtend/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/GCCLibraries/crtend/Makefile b/runtime/GCCLibraries/crtend/Makefile
index be7b93e5a0..2680bb1032 100644
--- a/runtime/GCCLibraries/crtend/Makefile
+++ b/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 $@