[llvm-commits] CVS: llvm/runtime/GCCLibraries/crtend/Makefile

Reid Spencer reid at x10sys.com
Sun Dec 5 11:15:17 PST 2004



Changes in directory llvm/runtime/GCCLibraries/crtend:

Makefile updated: 1.23 -> 1.24
---
Log message:

Make use of the LLVMGCCStdCXXLibDir variable to link objects

---
Diffs of the changes:  (+3 -3)

Index: llvm/runtime/GCCLibraries/crtend/Makefile
diff -u llvm/runtime/GCCLibraries/crtend/Makefile:1.23 llvm/runtime/GCCLibraries/crtend/Makefile:1.24
--- llvm/runtime/GCCLibraries/crtend/Makefile:1.23	Sat Dec  4 16:34:33 2004
+++ llvm/runtime/GCCLibraries/crtend/Makefile	Sun Dec  5 13:15:06 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 $@ \
+	$(MainObj) -o $@ -L$(LLVMGCCStdCXXLibDir)
 
 # 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 $@ -L$(LLVMGCCStdCXXLibDir)
 
 # 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 $@
+	$(SJLJEHObj) -o $@ -L$(LLVMGCCStdCXXLibDir)






More information about the llvm-commits mailing list