/xmlbench/trunk

To get this branch, use:
bzr branch http://darksoft.org/webbzr/xmlbench/trunk

« back to all changes in this revision

Viewing changes to Makefile.in

  • Committer: Suren A. Chilingaryan
  • Date: 2009-09-23 17:13:04 UTC
  • Revision ID: csa@dside.dyndns.org-20090923171304-osvtr4zqb29h11kd
Intel, Tango, Phobos, and RapidXML parsers; Memory benchmark scripts

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
compatgpp = g++-2.95
8
8
gppstd = g++
9
9
javac = javac
 
10
dmd1 = dmd
 
11
dmd2 = dmd
10
12
 
11
13
#       Since linking with pthreads drastically affects performance and 
12
14
#       threading enviroment is standard case nowdays, all tests can be
32
34
LIBS = -lm $(PTHREAD_LIBS)
33
35
#FLAGS = -march=nocona -pipe -O2 -DMAXOUTSIZE=67108864 -DCYRILLIC_TEXT
34
36
FLAGS = -march=nocona -pipe -O2 -DMAXOUTSIZE=67108864 
 
37
#FLAGS = -march=nocona -pipe -O3 -DMAXOUTSIZE=67108864 -mfpmath=sse,387 -unroll-loops
 
38
 
 
39
DFLAGS = -O
35
40
 
36
41
####################################################################################
37
42
 
136
141
QT_INCLUDE = -I/usr/include/qt4/QtXml -I/usr/include/qt4/QtCore -I/usr/include/qt4/ -I/usr/include/qt4/QtGui
137
142
QT_LIB = -L/usr/lib/qt4/ -lQtXml -lQtCore
138
143
 
139
 
PARABIX = no
140
 
PARABIX_INCLUDE = -DPARABIX_PARSER_FIX
 
144
RAPIDXML = yes
 
145
RAPIDXML_INCLUDE = -DRAPIDXML_PARSER_FIX
 
146
RAPIDXML_LIB =
 
147
 
 
148
PARABIX = yes
 
149
PARABIX_INCLUDE = -DPARABIX_PARSER_FIX -Iparabix.20090922/
141
150
 
142
151
ASMXML = yes
143
152
 
149
158
SUN = yes
150
159
SUN_CLASSPATH = .:../tools/:/opt/xml/apache/*:$(CLASSPATH)
151
160
#OLD_CLASSPATH = .:../tools/:/usr/share/java/xmlsec.jar:/usr/share/java/xerces-j2.jar:/usr/share/java/xalan-j2.jar:/usr/share/java/log4j.jar:$(CLASSPATH)
 
161
 
 
162
INTELJ = yes
 
163
INTEL_CLASSPATH = .:../tools/:$(CLASSPATH)
 
164
INTEL_ENV_SCRIPT = /opt/intel/xmlsoftwaresuite/java/1.2/tools/xssvars64.sh
 
165
 
 
166
JAVA_MEMORY=4000m
 
167
endif
 
168
 
 
169
D = yes
 
170
ifeq (${D}, yes)
 
171
PHOBOS = yes
 
172
TANGO = yes
152
173
endif