[llvm-commits] CVS: llvm-test/External/SPEC/CINT2006/473.astar/Makefile

Bill Wendling isanbard at gmail.com
Thu Aug 31 12:27:09 PDT 2006



Changes in directory llvm-test/External/SPEC/CINT2006/473.astar:

Makefile added (r1.1)
---
Log message:

Initial commit of the Makefiles for the SPEC2006 integer benchmarks.


---
Diffs of the changes:  (+28 -0)

 Makefile |   28 ++++++++++++++++++++++++++++
 1 files changed, 28 insertions(+)


Index: llvm-test/External/SPEC/CINT2006/473.astar/Makefile
diff -c /dev/null llvm-test/External/SPEC/CINT2006/473.astar/Makefile:1.1
*** /dev/null	Thu Aug 31 14:26:46 2006
--- llvm-test/External/SPEC/CINT2006/473.astar/Makefile	Thu Aug 31 14:26:36 2006
***************
*** 0 ****
--- 1,28 ----
+ ##===- Makefile --------------------------------------------*- Makefile -*-===##
+ #
+ # This makefile contains information for building the SPEC2006 astar test.
+ #
+ ##===----------------------------------------------------------------------===##
+ 
+ LEVEL = ../../../..
+ 
+ FP_TOLERANCE = 0.001
+ 
+ include ../../Makefile.spec2006
+ 
+ ifeq ($(ENDIAN),big)
+   CPPFLAGS += -DSPEC_CPU_BIG_ENDIAN
+ else
+   CPPFLAGS += -DSPEC_CPU_LITTLE_ENDIAN
+ endif
+ 
+ ifeq ($(RUN_TYPE),test)
+   RUN_OPTIONS      = lake.cfg
+   STDOUT_FILENAME := lake.out
+ else
+   RUN_OPTIONS      = rivers1.cfg
+   STDOUT_FILENAME := rivers1.out
+ endif
+ 
+ LDFLAGS = -lstdc++ -lm
+ LIBS    = -lstdc++ -lm






More information about the llvm-commits mailing list