[llvm-commits] CVS: llvm-test/Makefile.rules

Reid Spencer reid at x10sys.com
Tue Nov 23 14:55:19 PST 2004



Changes in directory llvm-test:

Makefile.rules updated: 1.3 -> 1.4
---
Log message:

Don't depend on obscure compiler options to generate paths into the 
makefile when perfectly legitimate configured values will suffice. This
change enables the llvm-test suite to be compiled with llvm-gcc or with
llvmc configured to use llvm-gcc's cc1 and cc1plus compiler tools.


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

Index: llvm-test/Makefile.rules
diff -u llvm-test/Makefile.rules:1.3 llvm-test/Makefile.rules:1.4
--- llvm-test/Makefile.rules:1.3	Thu Nov 18 15:38:09 2004
+++ llvm-test/Makefile.rules	Tue Nov 23 16:55:08 2004
@@ -261,7 +261,7 @@
 
 LLVMAS  := $(LLVMTOOLCURRENT)/llvm-as$(EXEEXT)
 # Find the location of the platform specific LLVM GCC libraries
-LLVMGCCLIBDIR=$(dir $(shell $(LLVMGCC) -print-file-name=libgcc.a))
+LLVMGCCLIBDIR=$(LLVMGCCDIR)/lib/gcc/$(LLVMGCCARCH) 
 # LLVM Tool Definitions (LLVMGCC, LLVMGXX, LLVMAS are provided by
 # Makefile.rules) 
 LLI       = $(LLVMTOOLCURRENT)/lli$(EXEEXT)






More information about the llvm-commits mailing list