[llvm-commits] CVS: llvm/runtime/GCCLibraries/crtend/Makefile
Reid Spencer
reid at x10sys.com
Tue Dec 7 20:22:58 PST 2004
Changes in directory llvm/runtime/GCCLibraries/crtend:
Makefile updated: 1.24 -> 1.25
---
Log message:
Remove useless -L switch now that gccld -link-as-library bug is fixed.
---
Diffs of the changes: (+3 -3)
Index: llvm/runtime/GCCLibraries/crtend/Makefile
diff -u llvm/runtime/GCCLibraries/crtend/Makefile:1.24 llvm/runtime/GCCLibraries/crtend/Makefile:1.25
--- llvm/runtime/GCCLibraries/crtend/Makefile:1.24 Sun Dec 5 13:15:06 2004
+++ llvm/runtime/GCCLibraries/crtend/Makefile Tue Dec 7 22:22:47 2004
@@ -47,18 +47,18 @@
$(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 $@
More information about the llvm-commits
mailing list