[llvm-commits] CVS: llvm/test/Programs/Makefile.programs

Vikram Adve vadve at psmith.cs.uiuc.edu
Mon Sep 23 09:25:00 PDT 2002


Changes in directory llvm/test/Programs:

Makefile.programs updated: 1.13 -> 1.14

---
Log message:

Allow LLC to be executed on Linux; only the LLC output should not be executed.


---
Diffs of the changes:

Index: llvm/test/Programs/Makefile.programs
diff -u llvm/test/Programs/Makefile.programs:1.13 llvm/test/Programs/Makefile.programs:1.14
--- llvm/test/Programs/Makefile.programs:1.13	Thu Sep 19 13:23:14 2002
+++ llvm/test/Programs/Makefile.programs	Mon Sep 23 09:23:52 2002
@@ -41,6 +41,9 @@
 # We will be working in the Output directory... 
 PREFIXED_PROGRAMS_TO_TEST := $(addprefix Output/,$(PROGRAMS_TO_TEST))
 
+# Generated code for llc (which does not require the target platform)
+LLCCODEGEN := $(addsuffix .llc.s,  $(PREFIXED_PROGRAMS_TO_TEST))
+
 # Output produced by programs run
 GCCOUTPUT := $(addsuffix .ll,       $(addprefix Output/,$(Source:.c=)))
 NATOUTPUT := $(addsuffix .out-nat,  $(PREFIXED_PROGRAMS_TO_TEST))
@@ -67,7 +70,7 @@
 endif
 
 ifndef DISABLE_LLC
-all:: $(LLCOUTPUT)
+all:: $(LLCCODEGEN)
 else
 DISABLE_LLC_DIFFS = 1
 endif





More information about the llvm-commits mailing list