[llvm-commits] CVS: llvm-test/MultiSource/Makefile.multisrc

Reid Spencer reid at x10sys.com
Thu Feb 8 19:38:37 PST 2007



Changes in directory llvm-test/MultiSource:

Makefile.multisrc updated: 1.57 -> 1.58
---
Log message:

Let's try using llvm-ld for the nightly test. If all goes well, gccld will
go away tomorrow. This patch replaces all uses of gccld with llvm-ld. 


---
Diffs of the changes:  (+6 -4)

 Makefile.multisrc |   10 ++++++----
 1 files changed, 6 insertions(+), 4 deletions(-)


Index: llvm-test/MultiSource/Makefile.multisrc
diff -u llvm-test/MultiSource/Makefile.multisrc:1.57 llvm-test/MultiSource/Makefile.multisrc:1.58
--- llvm-test/MultiSource/Makefile.multisrc:1.57	Fri Feb  2 22:30:17 2007
+++ llvm-test/MultiSource/Makefile.multisrc	Thu Feb  8 21:38:16 2007
@@ -40,8 +40,10 @@
 Output/%.o: %.cc Output/.dir
 	-$(CC) $(CPPFLAGS) $(CXXFLAGS) -O2 $(TARGET_FLAGS) -c $< -o $@
 
-bugpoint-gccas: Output/$(PROG).bugpoint-gccas
-bugpoint-gccld: Output/$(PROG).bugpoint-gccld
+bugpoint-opt: Output/$(PROG).bugpoint-opt
+bugpoint-gccas: Output/$(PROG).bugpoint-opt
+bugpoint-llvm-ld: Output/$(PROG).bugpoint-llvm-ld
+bugpoint-gccld: Output/$(PROG).bugpoint-llvm-ld
 bugpoint-jit:   Output/$(PROG).bugpoint-jit
 bugpoint-llc:   Output/$(PROG).bugpoint-llc
 bugpoint-llc-beta: Output/$(PROG).bugpoint-llc-beta
@@ -52,8 +54,8 @@
 ifndef USE_PRECOMPILED_BYTECODE
 
 $(PROGRAMS_TO_TEST:%=Output/%.linked.rbc): \
-Output/%.linked.rbc: $(LObjects) $(LGCCLDPROG)
-	-$(LGCCLDPROG) -link-as-library -disable-opt $(LObjects) -o $@
+Output/%.linked.rbc: $(LObjects) $(LLVMLDPROG)
+	-$(LLVMLDPROG) -link-as-library -disable-opt $(LObjects) -o $@
 
 $(PROGRAMS_TO_TEST:%=Output/%.LOC.txt): \
 Output/%.LOC.txt: $(Source)






More information about the llvm-commits mailing list