[llvm-commits] CVS: llvm/test/Programs/External/SPEC/Makefile.spec

Chris Lattner lattner at cs.uiuc.edu
Sat May 17 17:35:42 PDT 2003


Changes in directory llvm/test/Programs/External/SPEC:

Makefile.spec updated: 1.1 -> 1.2

---
Log message:

Changes to make things work better for the SPEC tests



---
Diffs of the changes:

Index: llvm/test/Programs/External/SPEC/Makefile.spec
diff -u llvm/test/Programs/External/SPEC/Makefile.spec:1.1 llvm/test/Programs/External/SPEC/Makefile.spec:1.2
--- llvm/test/Programs/External/SPEC/Makefile.spec:1.1	Wed May 14 18:21:11 2003
+++ llvm/test/Programs/External/SPEC/Makefile.spec	Sat May 17 17:32:43 2003
@@ -14,8 +14,8 @@
 ifndef STDOUT_FILENAME
 STDOUT_FILENAME := standard.out
 endif
-ifndef LIBS
-LIBS = -lm
+ifndef LDFLAGS
+LDFLAGS = -lm
 endif
 
 # Get the current directory, the name of the benchmark, and the current
@@ -34,14 +34,14 @@
 PROG := $(BENCH_NAME)
 Source := $(wildcard $(SPEC_BENCH_DIR)/src/*.c)
 
-SourceDir := $(SPEC_BENCH_DIR)/src/
-LCCFLAGS := -DSYS_IS_USG -O2
-CFLAGS := -DSYS_IS_USG -DSPEC_CPU2000 -O2
-
 # Disable the default Output/%.out-* targets...
 PROGRAMS_HAVE_CUSTOM_RUN_RULES := 1
+SourceDir := $(SPEC_BENCH_DIR)/src/
 
 include $(LEVEL)/test/Programs/MultiSource/Makefile.multisrc
+
+LCCFLAGS := -DSPEC_CPU2000 -O2
+CFLAGS := -DSPEC_CPU2000 -O2
 
 SPEC_SANDBOX := $(LEVEL)/test/Programs/External/SPEC/Sandbox.sh
 





More information about the llvm-commits mailing list