[llvm-commits] CVS: llvm-test/External/SPEC/CINT2006/483.xalancbmk/Makefile
Bill Wendling
isanbard at gmail.com
Thu Aug 31 12:27:08 PDT 2006
Changes in directory llvm-test/External/SPEC/CINT2006/483.xalancbmk:
Makefile added (r1.1)
---
Log message:
Initial commit of the Makefiles for the SPEC2006 integer benchmarks.
---
Diffs of the changes: (+37 -0)
Makefile | 37 +++++++++++++++++++++++++++++++++++++
1 files changed, 37 insertions(+)
Index: llvm-test/External/SPEC/CINT2006/483.xalancbmk/Makefile
diff -c /dev/null llvm-test/External/SPEC/CINT2006/483.xalancbmk/Makefile:1.1
*** /dev/null Thu Aug 31 14:26:46 2006
--- llvm-test/External/SPEC/CINT2006/483.xalancbmk/Makefile Thu Aug 31 14:26:36 2006
***************
*** 0 ****
--- 1,37 ----
+ ##===- Makefile --------------------------------------------*- Makefile -*-===##
+ #
+ # This makefile contains information for building the SPEC2006 xalancbmk test.
+ #
+ ##===----------------------------------------------------------------------===##
+
+ LEVEL = ../../../..
+
+ CPPFLAGS += -DNDEBUG -DAPP_NO_THREADS -DXALAN_INMEM_MSG_LOADER \
+ -DPROJ_XMLPARSER -DPROJ_XMLUTIL -DPROJ_PARSERS \
+ -DPROJ_SAX4C -DPROJ_SAX2 -DPROJ_DOM -DPROJ_VALIDATORS \
+ -DXML_USE_NATIVE_TRANSCODER -DXML_USE_INMEM_MESSAGELOADER \
+ -DXML_USE_PTHREADS \
+ -I$(SPEC_BENCH_DIR)/src/xercesc \
+ -I$(SPEC_BENCH_DIR)/src/xercesc/dom \
+ -I$(SPEC_BENCH_DIR)/src/xercesc/dom/impl \
+ -I$(SPEC_BENCH_DIR)/src/xercesc/sax \
+ -I$(SPEC_BENCH_DIR)/src/xercesc/util/MsgLoaders/InMemory \
+ -I$(SPEC_BENCH_DIR)/src/xercesc/util/Transcoders/Iconv \
+ -I$(SPEC_BENCH_DIR)/src/xalanc/include
+
+ include ../../Makefile.spec2006
+
+ ifeq ($(OS),Darwin)
+ CPPFLAGS += -DSPEC_CPU_MACOSX
+ endif
+
+ ifeq ($(RUN_TYPE),test)
+ RUN_OPTIONS = -v test.xml xalanc.xsl
+ STDOUT_FILENAME := test.out
+ else
+ RUN_OPTIONS = -v allbooks.xml xalanc.xsl
+ STDOUT_FILENAME := train.out
+ endif
+
+ LDFLAGS = -lstdc++ -lm
+ LIBS = -lstdc++ -lm
More information about the llvm-commits
mailing list