1 |
# Copyright 2006 by ACcESS MNRF |
# Copyright 2006 by ACcESS MNRF |
|
# |
|
|
# http://www.access.edu.au |
|
|
# Primary Business: Queensland, Australia |
|
|
# Licensed under the Open Software License version 3.0 |
|
|
# http://www.opensource.org/licenses/osl-3.0.php |
|
|
# |
|
|
# |
|
2 |
# |
# |
3 |
|
# http://www.access.edu.au |
4 |
|
# Primary Business: Queensland, Australia |
5 |
|
# Licensed under the Open Software License version 3.0 |
6 |
|
# http://www.opensource.org/licenses/osl-3.0.php |
7 |
|
|
8 |
# top-level Scons configuration file for all esys13 modules |
# top-level Scons configuration file for all esys13 modules |
9 |
# Begin initialisation Section |
# Begin initialisation Section |
10 |
# all of this section just intialises default environments and helper |
# all of this section just intialises default environments and helper |
11 |
# scripts. You shouldn't need to modify this section. |
# scripts. You shouldn't need to modify this section. |
12 |
EnsureSConsVersion(0,96,91) |
EnsureSConsVersion(0,96,91) |
13 |
EnsurePythonVersion(2,3) |
EnsurePythonVersion(2,3) |
14 |
|
|
15 |
import sys, os |
#=============================================================== |
16 |
|
# import tools: |
17 |
|
import glob |
18 |
|
import sys, os, re |
19 |
# Add our extensions |
# Add our extensions |
20 |
if sys.path.count('scons')==0: sys.path.append('scons') |
if sys.path.count('scons')==0: sys.path.append('scons') |
21 |
import scons_extensions |
import scons_extensions |
22 |
|
|
23 |
|
# We may also need to know where python's site-packages subdirectory lives |
24 |
|
python_version = 'python%s.%s'%(sys.version_info[0],sys.version_info[1]) |
25 |
|
|
26 |
|
#=============================================================== |
27 |
|
|
28 |
|
tools_prefix="/usr" |
29 |
|
|
30 |
|
#============================================================================================== |
31 |
|
# |
32 |
|
# get the installation prefix |
33 |
|
# |
34 |
|
prefix = ARGUMENTS.get('prefix', sys.prefix ) |
35 |
|
|
36 |
|
# We may also need to know where python's site-packages subdirectory lives |
37 |
|
python_version = 'python%s.%s'%(sys.version_info[0],sys.version_info[1]) |
38 |
|
# Install as a standard python package in /usr/lib64 if available, else in /usr/lib |
39 |
|
if os.path.isdir( prefix+"/lib64/"+python_version+"/site-packages"): |
40 |
|
sys_dir_packages = prefix+"/lib64/"+python_version+"/site-packages/esys" |
41 |
|
sys_dir_libraries = prefix+"/lib64" |
42 |
|
else: |
43 |
|
sys_dir_packages = prefix+"/lib/"+python_version+"/site-packages/esys" |
44 |
|
sys_dir_libraries = prefix+"/lib" |
45 |
|
|
46 |
|
sys_dir_examples = prefix+"/share/doc/esys" |
47 |
|
|
48 |
|
source_root = Dir('#.').abspath |
49 |
|
|
50 |
|
dir_packages = os.path.join(source_root,"esys") |
51 |
|
dir_examples = os.path.join(source_root,"examples") |
52 |
|
dir_libraries = os.path.join(source_root,"lib") |
53 |
|
|
54 |
|
print "Source root is : ",source_root |
55 |
|
print " Default packages local installation: ", dir_packages |
56 |
|
print " Default library local installation ", dir_libraries |
57 |
|
print " Default example local installation: ", dir_examples |
58 |
|
print "Install prefix is: ", prefix |
59 |
|
print " Default packages system installation: ", sys_dir_packages |
60 |
|
print " Default library system installation ", sys_dir_libraries |
61 |
|
print " Default example system installation: ", sys_dir_examples |
62 |
|
|
63 |
|
#============================================================================================== |
64 |
|
|
65 |
# Default options and options help text |
# Default options and options help text |
66 |
# These are defaults and can be overridden using command line arguments or an options file. |
# These are defaults and can be overridden using command line arguments or an options file. |
67 |
# if the options_file or ARGUMENTS do not exist then the ones listed as default here are used |
# if the options_file or ARGUMENTS do not exist then the ones listed as default here are used |
68 |
# DO NOT CHANGE THEM HERE |
# DO NOT CHANGE THEM HERE |
69 |
if ARGUMENTS.get('options_file',0): |
# Where to install? |
70 |
options_file = ARGUMENTS.get('options_file',0) |
#============================================================================================== |
71 |
else: |
# |
72 |
|
# get the options file if present: |
73 |
|
# |
74 |
|
options_file = ARGUMENTS.get('options_file','') |
75 |
|
|
76 |
|
if not os.path.isfile(options_file) : |
77 |
|
options_file = False |
78 |
|
|
79 |
|
if not options_file : |
80 |
import socket |
import socket |
81 |
from string import ascii_letters,digits |
hostname = re.sub("[^0-9a-zA-Z]", "_", socket.gethostname().split('.')[0]) |
82 |
hostname="" |
tmp = os.path.join("scons",hostname+"_options.py") |
83 |
for s in socket.gethostname().split('.')[0]: |
|
84 |
if s in ascii_letters+digits: |
if os.path.isfile(tmp) : |
85 |
hostname+=s |
options_file = tmp |
86 |
else: |
|
87 |
hostname+="_" |
IS_WINDOWS_PLATFORM = (os.name== "nt") |
88 |
options_file = "scons/"+hostname+"_options.py" |
|
89 |
|
# If you're not going to tell me then...... |
90 |
|
# FIXME: add one for the altix too. |
91 |
|
if not options_file : |
92 |
|
if IS_WINDOWS_PLATFORM : |
93 |
|
options_file = "scons/windows_mscv71_options.py" |
94 |
|
else: |
95 |
|
options_file = "scons/linux_gcc_eg_options.py" |
96 |
|
|
97 |
|
# and load it |
98 |
opts = Options(options_file, ARGUMENTS) |
opts = Options(options_file, ARGUMENTS) |
99 |
|
#================================================================ |
100 |
|
# |
101 |
|
# check if UMFPACK is installed on the system: |
102 |
|
# |
103 |
|
uf_root=None |
104 |
|
for i in [ 'UMFPACK', 'umfpack', 'ufsparse', 'UFSPARSE']: |
105 |
|
if os.path.isdir(os.path.join(tools_prefix,'include',i)): |
106 |
|
uf_root=i |
107 |
|
print i," is used form ",tools_prefix |
108 |
|
break |
109 |
|
if not uf_root==None: |
110 |
|
umf_path_default=os.path.join(tools_prefix,'include',uf_root) |
111 |
|
umf_lib_path_default=os.path.join(tools_prefix,'lib') |
112 |
|
umf_libs_default=['umfpack'] |
113 |
|
amd_path_default=os.path.join(tools_prefix,'include',uf_root) |
114 |
|
amd_lib_path_default=os.path.join(tools_prefix,'lib') |
115 |
|
amd_libs_default=['amd'] |
116 |
|
ufc_path_default=os.path.join(tools_prefix,'include',uf_root) |
117 |
|
else: |
118 |
|
umf_path_default=None |
119 |
|
umf_lib_path_default=None |
120 |
|
umf_libs_default=None |
121 |
|
amd_path_default=None |
122 |
|
amd_lib_path_default=None |
123 |
|
amd_libs_default=None |
124 |
|
ufc_path_default=None |
125 |
|
# |
126 |
|
#========================================================================== |
127 |
|
# |
128 |
|
# python installation: |
129 |
|
# |
130 |
|
python_path_default=os.path.join(tools_prefix,'include','python%s.%s'%(sys.version_info[0],sys.version_info[1])) |
131 |
|
python_lib_path_default=os.path.join(tools_prefix,'lib') |
132 |
|
python_lib_default="python%s.%s"%(sys.version_info[0],sys.version_info[1]) |
133 |
|
|
134 |
|
#========================================================================== |
135 |
|
# |
136 |
|
# boost installation: |
137 |
|
# |
138 |
|
boost_path_default=os.path.join(tools_prefix,'include') |
139 |
|
boost_lib_path_default=os.path.join(tools_prefix,'lib') |
140 |
|
boost_lib_default=['boost_python'] |
141 |
|
|
142 |
|
#========================================================================== |
143 |
|
# |
144 |
|
# check if netCDF is installed on the system: |
145 |
|
# |
146 |
|
netCDF_path_default=os.path.join(tools_prefix,'include','netcdf-3') |
147 |
|
netCDF_lib_path_default=os.path.join(tools_prefix,'lib') |
148 |
|
|
149 |
|
if os.path.isdir(netCDF_path_default) and os.path.isdir(netCDF_lib_path_default): |
150 |
|
useNetCDF_default='yes' |
151 |
|
netCDF_libs_default=[ 'netcdf_c++', 'netcdf' ] |
152 |
|
else: |
153 |
|
useNetCDF_default='no' |
154 |
|
netCDF_path_default=None |
155 |
|
netCDF_lib_path_default=None |
156 |
|
netCDF_libs_default=None |
157 |
|
|
158 |
|
#========================================================================== |
159 |
|
# |
160 |
|
# MPI: |
161 |
|
# |
162 |
|
if IS_WINDOWS_PLATFORM: |
163 |
|
useMPI_default='no' |
164 |
|
mpi_path_default=None |
165 |
|
mpi_lib_path_default=None |
166 |
|
mpi_libs_default=[] |
167 |
|
mpi_run_default=None |
168 |
|
else: |
169 |
|
useMPI_default='no' |
170 |
|
mpi_root='/usr/local' |
171 |
|
mpi_path_default=os.path.join(mpi_root,'include') |
172 |
|
mpi_lib_path_default=os.path.join(mpi_root,'lib') |
173 |
|
mpi_libs_default=[ 'mpich' , 'pthread', 'rt' ] |
174 |
|
mpi_run_default='mpiexec -np 1' |
175 |
|
# |
176 |
|
#========================================================================== |
177 |
|
# |
178 |
|
# compile: |
179 |
|
# |
180 |
|
cc_flags_default='-O3 -std=c99 -ffast-math -fpic -Wno-unknown-pragmas -ansi' |
181 |
|
cc_flags_debug_default='-g -O0 -ffast-math -std=c99 -fpic -Wno-unknown-pragmas -ansi' |
182 |
|
cxx_flags_default='--no-warn -ansi' |
183 |
|
cxx_flags_debug_default='--no-warn -ansi -DDOASSERT' |
184 |
|
|
185 |
|
#============================================================================================== |
186 |
|
# Default options and options help text |
187 |
|
# These are defaults and can be overridden using command line arguments or an options file. |
188 |
|
# if the options_file or ARGUMENTS do not exist then the ones listed as default here are used |
189 |
|
# DO NOT CHANGE THEM HERE |
190 |
opts.AddOptions( |
opts.AddOptions( |
191 |
# Where to install esys stuff |
# Where to install esys stuff |
192 |
('incinstall', 'where the esys headers will be installed', Dir('#.').abspath+'/include'), |
('incinstall', 'where the esys headers will be installed', Dir('#.').abspath+'/include'), |
193 |
('libinstall', 'where the esys libraries will be installed', Dir('#.').abspath+'/lib'), |
('libinstall', 'where the esys libraries will be installed', dir_libraries), |
194 |
('pyinstall', 'where the esys python modules will be installed', Dir('#.').abspath), |
('pyinstall', 'where the esys python modules will be installed', dir_packages), |
195 |
|
('exinstall', 'where the esys examples will be installed', dir_examples), |
196 |
|
('sys_libinstall', 'where the system esys libraries will be installed', sys_dir_libraries), |
197 |
|
('sys_pyinstall', 'where the system esys python modules will be installed', sys_dir_packages), |
198 |
|
('sys_exinstall', 'where the system esys examples will be installed', sys_dir_examples), |
199 |
|
('src_zipfile', 'the source zip file will be installed.', Dir('#.').abspath+"/release/escript_src.zip"), |
200 |
|
('test_zipfile', 'the test zip file will be installed.', Dir('#.').abspath+"/release/escript_tests.zip"), |
201 |
|
('src_tarfile', 'the source tar file will be installed.', Dir('#.').abspath+"/release/escript_src.tar.gz"), |
202 |
|
('test_tarfile', 'the test tar file will be installed.', Dir('#.').abspath+"/release/escript_tests.tar.gz"), |
203 |
|
('examples_tarfile', 'the examples tar file will be installed.', Dir('#.').abspath+"/release/doc/escript_examples.tar.gz"), |
204 |
|
('examples_zipfile', 'the examples zip file will be installed.', Dir('#.').abspath+"/release/doc/escript_examples.zip"), |
205 |
|
('guide_pdf', 'name of the user guide in pdf format', Dir('#.').abspath+"/release/doc/user/guide.pdf"), |
206 |
|
('api_epydoc', 'name of the epydoc api docs directory', Dir('#.').abspath+"/release/doc/epydoc"), |
207 |
|
('guide_html', 'name of the directory for user guide in html format', Dir('#.').abspath+"/release/doc/user/html"), |
208 |
|
('api_doxygen', 'name of the doxygen api docs directory',prefix+"/release/doc/doxygen"), |
209 |
# Compilation options |
# Compilation options |
210 |
BoolOption('dodebug', 'Do you want a debug build?', 'yes'), |
BoolOption('dodebug', 'Do you want a debug build?', 'no'), |
211 |
('options_file', "Optional file containing preferred options. Ignored if it doesn't exist (default: scons/hostname_options.py)", options_file), |
BoolOption('bounds_check', 'Do you want extra array bounds checking?', 'no'), |
212 |
|
('options_file', "Optional file containing preferred options. Ignored if it doesn't exist (default: scons/<hostname>_options.py)", options_file), |
213 |
('cc_defines','C/C++ defines to use', None), |
('cc_defines','C/C++ defines to use', None), |
214 |
('cc_flags','C compiler flags to use (Release build)', None), |
('cc_flags','C compiler flags to use (Release build)', cc_flags_default), |
215 |
('cc_flags_debug', 'C compiler flags to use (Debug build)', None), |
('cc_flags_debug', 'C compiler flags to use (Debug build)', cc_flags_debug_default), |
216 |
('cxx_flags', 'C++ compiler flags to use (Release build)', None), |
('cxx_flags', 'C++ compiler flags to use (Release build)', cxx_flags_default), |
217 |
('cxx_flags_debug', 'C++ compiler flags to use (Debug build)', None), |
('cxx_flags_debug', 'C++ compiler flags to use (Debug build)', cxx_flags_debug_default), |
218 |
|
('link_flags', 'Linker flags to use (Release build)', None), |
219 |
|
('link_flags_debug', 'Linker flags to use (Debug build)', None), |
220 |
|
|
221 |
|
('omp_flags', 'OpenMP compiler flags to use (Release build)', ''), |
222 |
|
('omp_flags_debug', 'OpenMP compiler flags to use (Debug build)', ''), |
223 |
('ar_flags', 'Static library archiver flags to use', None), |
('ar_flags', 'Static library archiver flags to use', None), |
224 |
('sys_libs', 'System libraries to link with', None), |
('sys_libs', 'System libraries to link with', None), |
225 |
|
('tar_flags','flags for zip files','-c -z'), |
226 |
# MKL |
# MKL |
227 |
PathOption('mkl_path', 'Path to MKL includes', None), |
PathOption('mkl_path', 'Path to MKL includes', None), |
228 |
PathOption('mkl_lib_path', 'Path to MKL libs', None), |
PathOption('mkl_lib_path', 'Path to MKL libs', None), |
229 |
('mkl_libs', 'MKL libraries to link with', None), |
('mkl_libs', 'MKL libraries to link with', None), |
230 |
# SCSL |
# SCSL |
231 |
PathOption('scsl_path', 'Path to SCSL includes', None), |
PathOption('scsl_path', 'Path to SCSL includes', None), |
232 |
PathOption('scsl_lib_path', 'Path to SCSL libs', None), |
PathOption('scsl_lib_path', 'Path to SCSL libs', None), |
233 |
('scsl_libs', 'SCSL libraries to link with', None), |
('scsl_libs', 'SCSL libraries to link with', None), |
234 |
# UMFPACK |
('scsl_libs_MPI', 'SCSL libraries to link with for MPI build', None), |
235 |
PathOption('umf_path', 'Path to UMF includes', None), |
# UMFPACK |
236 |
PathOption('umf_lib_path', 'Path to UMF libs', None), |
PathOption('ufc_path', 'Path to UFconfig includes', ufc_path_default), |
237 |
('umf_libs', 'UMF libraries to link with', None), |
PathOption('umf_path', 'Path to UMFPACK includes', umf_path_default), |
238 |
|
PathOption('umf_lib_path', 'Path to UMFPACK libs', umf_lib_path_default), |
239 |
|
('umf_libs', 'UMFPACK libraries to link with', umf_libs_default), |
240 |
|
# AMD (used by UMFPACK) |
241 |
|
PathOption('amd_path', 'Path to AMD includes', amd_path_default), |
242 |
|
PathOption('amd_lib_path', 'Path to AMD libs', amd_lib_path_default), |
243 |
|
('amd_libs', 'AMD libraries to link with', amd_libs_default), |
244 |
|
# ParMETIS |
245 |
|
('parmetis_path', 'Path to ParMETIS includes', ''), |
246 |
|
('parmetis_lib_path', 'Path to ParMETIS library', ''), |
247 |
|
('parmetis_lib', 'ParMETIS library to link with', []), |
248 |
|
# TRILINOS |
249 |
|
PathOption('trilinos_path', 'Path to TRILINOS includes', None), |
250 |
|
PathOption('trilinos_lib_path', 'Path to TRILINOS libs', None), |
251 |
|
('trilinos_libs', 'TRILINOS libraries to link with', None), |
252 |
|
# BLAS |
253 |
|
PathOption('blas_path', 'Path to BLAS includes', None), |
254 |
|
PathOption('blas_lib_path', 'Path to BLAS libs', None), |
255 |
|
('blas_libs', 'BLAS libraries to link with', None), |
256 |
|
# netCDF |
257 |
|
('useNetCDF', 'switch on/off the usage of netCDF', useNetCDF_default), |
258 |
|
PathOption('netCDF_path', 'Path to netCDF includes', netCDF_path_default), |
259 |
|
PathOption('netCDF_lib_path', 'Path to netCDF libs', netCDF_lib_path_default), |
260 |
|
('netCDF_libs', 'netCDF C++ libraries to link with', netCDF_libs_default), |
261 |
# Python |
# Python |
262 |
# locations of include files for python |
# locations of include files for python |
263 |
PathOption('python_path', 'Path to Python includes', '/usr/include/python%s.%s'%(sys.version_info[0],sys.version_info[1])), |
# FIXME: python_path should be python_inc_path and the same for boost etc. |
264 |
PathOption('python_lib_path', 'Path to Python libs', '/usr/lib'), |
PathOption('python_path', 'Path to Python includes', python_path_default), |
265 |
('python_lib', 'Python libraries to link with', ["python%s.%s"%(sys.version_info[0],sys.version_info[1]),]), |
PathOption('python_lib_path', 'Path to Python libs', python_lib_path_default), |
266 |
|
('python_lib', 'Python libraries to link with', python_lib_default), |
267 |
|
('python_cmd', 'Python command', 'python'), |
268 |
# Boost |
# Boost |
269 |
PathOption('boost_path', 'Path to Boost includes', '/usr/include'), |
PathOption('boost_path', 'Path to Boost includes', boost_path_default), |
270 |
PathOption('boost_lib_path', 'Path to Boost libs', '/usr/lib'), |
PathOption('boost_lib_path', 'Path to Boost libs', boost_lib_path_default), |
271 |
('boost_lib', 'Boost libraries to link with', ['boost_python',]), |
('boost_lib', 'Boost libraries to link with', boost_lib_default), |
|
# CppUnit |
|
|
PathOption('cppunit_path', 'Path to CppUnit includes', Dir('#.').abspath+'/tools/CppUnitTest/inc'), |
|
|
PathOption('cppunit_lib_path', 'Path to CppUnit libs', Dir('#.').abspath+'/lib'), |
|
|
('cppunit_lib', 'CppUnit libraries to link with', ['CppUnitTest',]), |
|
272 |
# Doc building |
# Doc building |
273 |
PathOption('doxygen_path', 'Path to Doxygen executable', None), |
# PathOption('doxygen_path', 'Path to Doxygen executable', None), |
274 |
PathOption('epydoc_path', 'Path to Epydoc executable', None), |
# PathOption('epydoc_path', 'Path to Epydoc executable', None), |
|
PathOption('epydoc_pythonpath', 'Path to Epydoc python files', None), |
|
275 |
# PAPI |
# PAPI |
276 |
PathOption('papi_path', 'Path to PAPI includes', None), |
PathOption('papi_path', 'Path to PAPI includes', None), |
277 |
PathOption('papi_lib_path', 'Path to PAPI libs', None), |
PathOption('papi_lib_path', 'Path to PAPI libs', None), |
278 |
('papi_libs', 'PAPI libraries to link with', None), |
('papi_libs', 'PAPI libraries to link with', None), |
279 |
|
('papi_instrument_solver', 'use PAPI in Solver.c to instrument each iteration of the solver', None), |
280 |
|
# MPI |
281 |
|
BoolOption('useMPI', 'Compile parallel version using MPI', useMPI_default), |
282 |
|
('MPICH_IGNORE_CXX_SEEK', 'name of macro to ignore MPI settings of C++ SEEK macro (for MPICH)' , 'MPICH_IGNORE_CXX_SEEK'), |
283 |
|
PathOption('mpi_path', 'Path to MPI includes', mpi_path_default), |
284 |
|
('mpi_run', 'mpirun name' , mpi_run_default), |
285 |
|
PathOption('mpi_lib_path', 'Path to MPI libs (needs to be added to the LD_LIBRARY_PATH)',mpi_lib_path_default), |
286 |
|
('mpi_libs', 'MPI libraries to link with (needs to be shared!)', mpi_libs_default) |
287 |
) |
) |
288 |
|
#================================================================================================= |
289 |
|
# |
290 |
|
# Note: On the Altix the intel compilers are not automatically |
291 |
|
# detected by scons intelc.py script. The Altix has a different directory |
292 |
|
# path and in some locations the "modules" facility is used to support |
293 |
|
# multiple compiler versions. This forces the need to import the users PATH |
294 |
|
# environment which isn't the "scons way" |
295 |
|
# This doesn't impact linux and windows which will use the default compiler (g++ or msvc, or the intel compiler if it is installed on both platforms) |
296 |
|
# FIXME: Perhaps a modification to intelc.py will allow better support for ia64 on altix |
297 |
|
# |
298 |
|
|
299 |
# Initialise Scons Build Environment |
if IS_WINDOWS_PLATFORM: |
300 |
# check for user environment variables we are interested in |
env = Environment(tools = ['default', 'msvc'], options = opts) |
301 |
|
#env = Environment(tools = ['default', 'intelc'], options = opts) |
302 |
|
else: |
303 |
|
if socket.gethostname().split('.')[0] == 'service0': |
304 |
|
env = Environment(tools = ['default', 'intelc'], options = opts) |
305 |
|
elif os.uname()[4]=='ia64': |
306 |
|
env = Environment(tools = ['default', 'intelc'], options = opts) |
307 |
|
if env['CXX'] == 'icpc': |
308 |
|
env['LINK'] = env['CXX'] # version >=9 of intel c++ compiler requires use of icpc to link in C++ runtimes (icc does not). FIXME: this behaviour could be directly incorporated into scons intelc.py |
309 |
|
else: |
310 |
|
env = Environment(tools = ['default'], options = opts) |
311 |
|
Help(opts.GenerateHelpText(env)) |
312 |
|
|
313 |
|
if env['bounds_check']: |
314 |
|
env.Append(CPPDEFINES = [ 'BOUNDS_CHECK' ]) |
315 |
|
env.Append(CXXDEFINES = [ 'BOUNDS_CHECK' ]) |
316 |
|
bounds_check = env['bounds_check'] |
317 |
|
else: |
318 |
|
bounds_check = 0 |
319 |
|
|
320 |
|
#================================================================================================= |
321 |
|
# |
322 |
|
# Initialise Scons Build Environment |
323 |
|
# check for user environment variables we are interested in |
324 |
try: |
try: |
325 |
python_path = os.environ['PYTHONPATH'] |
tmp = os.environ['PYTHONPATH'] |
326 |
|
env['ENV']['PYTHONPATH'] = tmp |
327 |
except KeyError: |
except KeyError: |
328 |
python_path = '' |
pass |
329 |
|
|
330 |
|
env.PrependENVPath('PYTHONPATH', source_root) |
331 |
|
|
332 |
try: |
try: |
333 |
path = os.environ['PATH'] |
omp_num_threads = os.environ['OMP_NUM_THREADS'] |
334 |
except KeyError: |
except KeyError: |
335 |
path = '' |
omp_num_threads = 1 |
336 |
|
env['ENV']['OMP_NUM_THREADS'] = omp_num_threads |
337 |
|
|
338 |
try: |
try: |
339 |
ld_library_path = os.environ['LD_LIBRARY_PATH'] |
path = os.environ['PATH'] |
340 |
|
env['ENV']['PATH'] = path |
341 |
except KeyError: |
except KeyError: |
342 |
ld_library_path = '' |
omp_num_threads = 1 |
343 |
|
|
344 |
# Note: On the Altix the intel compilers are not automatically |
env['ENV']['OMP_NUM_THREADS'] = omp_num_threads |
|
# detected by scons intelc.py script. The Altix has a different directory |
|
|
# path and in some locations the "modules" facility is used to support |
|
|
# multiple compiler versions. This forces the need to import the users PATH |
|
|
# environment which isn't the "scons way" |
|
|
# This doesn't impact linux and windows which will use the default compiler (g++ or msvc, or the intel compiler if it is installed on both platforms) |
|
|
# FIXME: Perhaps a modification to intelc.py will allow better support for ia64 on altix |
|
|
|
|
|
if os.name != "nt" and os.uname()[4]=='ia64': |
|
|
env = Environment(ENV = {'PATH':path}, tools = ['default', 'intelc'], options = opts) |
|
|
env['ENV']['PATH'] = path |
|
|
env['ENV']['LD_LIBRARY_PATH'] = ld_library_path |
|
|
env['ENV']['PYTHONPATH'] = python_path |
|
|
if env['CXX'] == 'icpc': |
|
|
env['LINK'] = env['CXX'] # version >=9 of intel c++ compiler requires use of icpc to link in C++ runtimes (icc does not). FIXME: this behaviour could be directly incorporated into scons intelc.py |
|
|
elif os.name == "nt": |
|
|
# FIXME: Need to implement equivalent of ld library path for windoze |
|
|
env = Environment(tools = ['default', 'intelc'], options = opts) |
|
|
env['ENV']['PYTHONPATH'] = python_path |
|
|
else: |
|
|
env = Environment(tools = ['default'], options = opts) |
|
|
env['ENV']['PATH'] = path |
|
|
env['ENV']['LD_LIBRARY_PATH'] = ld_library_path |
|
|
env['ENV']['PYTHONPATH'] = python_path |
|
345 |
|
|
|
# Setup help for options |
|
|
Help(opts.GenerateHelpText(env)) |
|
346 |
|
|
347 |
# Add some customer builders |
# Copy some variables from the system environment to the build environment |
348 |
|
try: |
349 |
|
env['ENV']['DISPLAY'] = os.environ['DISPLAY'] |
350 |
|
env['ENV']['XAUTHORITY'] = os.environ['XAUTHORITY'] |
351 |
|
home_temp = os.environ['HOME'] # MPICH2's mpd needs $HOME to find $HOME/.mpd.conf |
352 |
|
env['ENV']['HOME'] = home_temp |
353 |
|
except KeyError: |
354 |
|
pass |
355 |
|
|
356 |
|
try: |
357 |
|
tmp = os.environ['PATH'] |
358 |
|
env['ENV']['PATH'] = tmp |
359 |
|
except KeyError: |
360 |
|
pass |
361 |
|
|
362 |
|
try: |
363 |
|
tmp = os.environ['LD_LIBRARY_PATH'] |
364 |
|
env['ENV']['LD_LIBRARY_PATH'] = tmp |
365 |
|
except KeyError: |
366 |
|
pass |
367 |
|
#========================================================================== |
368 |
|
# |
369 |
|
# Add some customer builders |
370 |
|
# |
371 |
py_builder = Builder(action = scons_extensions.build_py, suffix = '.pyc', src_suffix = '.py', single_source=True) |
py_builder = Builder(action = scons_extensions.build_py, suffix = '.pyc', src_suffix = '.py', single_source=True) |
372 |
env.Append(BUILDERS = {'PyCompile' : py_builder}); |
env.Append(BUILDERS = {'PyCompile' : py_builder}); |
373 |
|
|
374 |
if env['PLATFORM'] == "win32": |
runUnitTest_builder = Builder(action = scons_extensions.runUnitTest, suffix = '.passed', |
375 |
runUnitTest_builder = Builder(action = scons_extensions.runUnitTest, suffix = '.passed', src_suffix='.exe', single_source=True) |
src_suffix=env['PROGSUFFIX'], single_source=True) |
376 |
else: |
|
|
runUnitTest_builder = Builder(action = scons_extensions.runUnitTest, suffix = '.passed', single_source=True) |
|
377 |
env.Append(BUILDERS = {'RunUnitTest' : runUnitTest_builder}); |
env.Append(BUILDERS = {'RunUnitTest' : runUnitTest_builder}); |
378 |
|
|
379 |
runPyUnitTest_builder = Builder(action = scons_extensions.runPyUnitTest, suffix = '.passed', src_suffic='.py', single_source=True) |
runPyUnitTest_builder = Builder(action = scons_extensions.runPyUnitTest, suffix = '.passed', src_suffic='.py', single_source=True) |
384 |
incinstall = env['incinstall'] |
incinstall = env['incinstall'] |
385 |
env.Append(CPPPATH = [incinstall,]) |
env.Append(CPPPATH = [incinstall,]) |
386 |
except KeyError: |
except KeyError: |
387 |
incinstall = None |
incinstall = None |
388 |
try: |
try: |
389 |
libinstall = env['libinstall'] |
libinstall = env['libinstall'] |
390 |
env.Append(LIBPATH = [libinstall,]) |
env.Append(LIBPATH = [libinstall,]) # Adds -L for building of libescript.so libfinley.so escriptcpp.so finleycpp.so |
391 |
env.PrependENVPath('LD_LIBRARY_PATH', libinstall) |
env.PrependENVPath('LD_LIBRARY_PATH', libinstall) |
392 |
|
if IS_WINDOWS_PLATFORM : |
393 |
|
env.PrependENVPath('PATH', libinstall) |
394 |
|
env.PrependENVPath('PATH', env['boost_lib_path']) |
395 |
except KeyError: |
except KeyError: |
396 |
libinstall = None |
libinstall = None |
397 |
try: |
try: |
398 |
pyinstall = env['pyinstall']+'/esys' # all targets will install into pyinstall/esys but PYTHONPATH points at straight pyinstall so you go import esys.escript etc |
pyinstall = env['pyinstall'] # all targets will install into pyinstall/esys but PYTHONPATH points at straight pyinstall so you go import esys.escript etc |
|
env.PrependENVPath('PYTHONPATH', env['pyinstall']) |
|
399 |
except KeyError: |
except KeyError: |
400 |
pyinstall = None |
pyinstall = None |
401 |
|
|
402 |
try: |
try: |
403 |
dodebug = env['dodebug'] |
cc_defines = env['cc_defines'] |
404 |
|
env.Append(CPPDEFINES = cc_defines) |
405 |
except KeyError: |
except KeyError: |
406 |
dodebug = None |
pass |
407 |
try: |
try: |
408 |
cc_defines = env['cc_defines'] |
flags = env['ar_flags'] |
409 |
env.Append(CPPDEFINES = [cc_defines,]) |
env.Append(ARFLAGS = flags) |
410 |
|
except KeyError: |
411 |
|
ar_flags = None |
412 |
|
try: |
413 |
|
sys_libs = env['sys_libs'] |
414 |
|
except KeyError: |
415 |
|
sys_libs = [] |
416 |
|
|
417 |
|
try: |
418 |
|
tar_flags = env['tar_flags'] |
419 |
|
env.Replace(TARFLAGS = tar_flags) |
420 |
except KeyError: |
except KeyError: |
421 |
pass |
pass |
422 |
|
|
423 |
|
try: |
424 |
|
exinstall = env['exinstall'] |
425 |
|
except KeyError: |
426 |
|
exinstall = None |
427 |
|
try: |
428 |
|
sys_libinstall = env['sys_libinstall'] |
429 |
|
except KeyError: |
430 |
|
sys_libinstall = None |
431 |
|
try: |
432 |
|
sys_pyinstall = env['sys_pyinstall'] |
433 |
|
except KeyError: |
434 |
|
sys_pyinstall = None |
435 |
|
try: |
436 |
|
sys_exinstall = env['sys_exinstall'] |
437 |
|
except KeyError: |
438 |
|
sys_exinstall = None |
439 |
|
|
440 |
|
# ====================== debugging =================================== |
441 |
|
try: |
442 |
|
dodebug = env['dodebug'] |
443 |
|
except KeyError: |
444 |
|
dodebug = None |
445 |
|
|
446 |
|
# === switch on omp =================================================== |
447 |
|
try: |
448 |
|
omp_flags = env['omp_flags'] |
449 |
|
except KeyError: |
450 |
|
omp_flags = '' |
451 |
|
|
452 |
|
try: |
453 |
|
omp_flags_debug = env['omp_flags_debug'] |
454 |
|
except KeyError: |
455 |
|
omp_flags_debug = '' |
456 |
|
|
457 |
|
# ========= use mpi? ===================================================== |
458 |
|
try: |
459 |
|
useMPI = env['useMPI'] |
460 |
|
except KeyError: |
461 |
|
useMPI = None |
462 |
|
# ========= set compiler flags =========================================== |
463 |
|
|
464 |
if dodebug: |
if dodebug: |
465 |
|
try: |
466 |
|
flags = env['cc_flags_debug'] + ' ' + omp_flags_debug |
467 |
|
env.Append(CCFLAGS = flags) |
468 |
|
except KeyError: |
469 |
|
pass |
470 |
|
else: |
471 |
try: |
try: |
472 |
flags = env['cc_flags_debug'] |
flags = env['cc_flags'] + ' ' + omp_flags |
473 |
env.Append(CCFLAGS = flags) |
env.Append(CCFLAGS = flags) |
474 |
except KeyError: |
except KeyError: |
475 |
pass |
pass |
476 |
|
if dodebug: |
477 |
|
try: |
478 |
|
flags = env['cxx_flags_debug'] |
479 |
|
env.Append(CXXFLAGS = flags) |
480 |
|
except KeyError: |
481 |
|
pass |
482 |
else: |
else: |
483 |
|
try: |
484 |
|
flags = env['cxx_flags'] |
485 |
|
env.Append(CXXFLAGS = flags) |
486 |
|
except KeyError: |
487 |
|
pass |
488 |
|
try: |
489 |
|
if env['CC'] == 'gcc': env.Append(CCFLAGS = "-pedantic-errors -Wno-long-long") |
490 |
|
except: |
491 |
|
pass |
492 |
|
if dodebug: |
493 |
|
try: |
494 |
|
flags = env['link_flags_debug'] |
495 |
|
env.Append(LINKFLAGS = flags) |
496 |
|
except KeyError: |
497 |
|
pass |
498 |
|
else: |
499 |
|
try: |
500 |
|
flags = env['link_flags'] |
501 |
|
env.Append(LINKFLAGS = flags) |
502 |
|
except KeyError: |
503 |
|
pass |
504 |
|
|
505 |
|
# ============= Remember what options were used in the compile ===================================== |
506 |
|
if not IS_WINDOWS_PLATFORM: |
507 |
|
env.Execute("/bin/rm -f " + libinstall + "/Compiled.with.*") |
508 |
|
if dodebug: env.Execute("touch " + libinstall + "/Compiled.with.debug") |
509 |
|
if useMPI: env.Execute("touch " + libinstall + "/Compiled.with.mpi") |
510 |
|
if omp_flags != '': env.Execute("touch " + libinstall + "/Compiled.with.OpenMP") |
511 |
|
if bounds_check: env.Execute("touch " + libinstall + "/Compiled.with.bounds_check") |
512 |
|
|
513 |
|
# ============= set mkl (but only of no MPI) ===================================== |
514 |
|
if not useMPI: |
515 |
try: |
try: |
516 |
flags = env['cc_flags'] |
includes = env['mkl_path'] |
517 |
env.Append(CCFLAGS = flags) |
env.Append(CPPPATH = [includes,]) |
518 |
except KeyError: |
except KeyError: |
519 |
pass |
pass |
520 |
|
|
|
if dodebug: |
|
521 |
try: |
try: |
522 |
flags = env['cxx_flags_debug'] |
lib_path = env['mkl_lib_path'] |
523 |
env.Append(CXXFLAGS = flags) |
env.Append(LIBPATH = [lib_path,]) |
524 |
|
env['ENV']['LD_LIBRARY_PATH']+=":"+lib_path |
525 |
except KeyError: |
except KeyError: |
526 |
pass |
pass |
527 |
|
|
528 |
|
try: |
529 |
|
mkl_libs = env['mkl_libs'] |
530 |
|
except KeyError: |
531 |
|
mkl_libs = [] |
532 |
else: |
else: |
533 |
|
mkl_libs = [] |
534 |
|
|
535 |
|
# ============= set scsl (but only of no MPI) ===================================== |
536 |
|
if not useMPI: |
537 |
try: |
try: |
538 |
flags = env['cxx_flags'] |
includes = env['scsl_path'] |
539 |
env.Append(CXXFLAGS = flags) |
env.Append(CPPPATH = [includes,]) |
540 |
except KeyError: |
except KeyError: |
541 |
pass |
pass |
542 |
|
|
543 |
try: |
try: |
544 |
flags = env['ar_flags'] |
lib_path = env['scsl_lib_path'] |
545 |
env.Append(ARFLAGS = flags) |
env.Append(LIBPATH = [lib_path,]) |
546 |
except KeyError: |
env['ENV']['LD_LIBRARY_PATH']+=":"+lib_path |
547 |
ar_flags = None |
except KeyError: |
548 |
try: |
pass |
549 |
sys_libs = env['sys_libs'] |
|
550 |
except KeyError: |
try: |
551 |
sys_libs = '' |
scsl_libs = env['scsl_libs'] |
552 |
|
except KeyError: |
553 |
|
scsl_libs = [ ] |
554 |
|
|
555 |
|
else: |
556 |
|
scsl_libs = [] |
557 |
|
|
558 |
|
# ============= set TRILINOS (but only with MPI) ===================================== |
559 |
|
if useMPI: |
560 |
|
try: |
561 |
|
includes = env['trilinos_path'] |
562 |
|
env.Append(CPPPATH = [includes,]) |
563 |
|
except KeyError: |
564 |
|
pass |
565 |
|
|
566 |
|
try: |
567 |
|
lib_path = env['trilinos_lib_path'] |
568 |
|
env.Append(LIBPATH = [lib_path,]) |
569 |
|
except KeyError: |
570 |
|
pass |
571 |
|
|
572 |
|
try: |
573 |
|
trilinos_libs = env['trilinos_libs'] |
574 |
|
except KeyError: |
575 |
|
trilinos_libs = [] |
576 |
|
else: |
577 |
|
trilinos_libs = [] |
578 |
|
|
579 |
|
|
580 |
|
# ============= set umfpack (but only without MPI) ===================================== |
581 |
|
umf_libs=[ ] |
582 |
|
if not useMPI: |
583 |
|
try: |
584 |
|
includes = env['umf_path'] |
585 |
|
env.Append(CPPPATH = [includes,]) |
586 |
|
except KeyError: |
587 |
|
pass |
588 |
|
|
589 |
|
try: |
590 |
|
lib_path = env['umf_lib_path'] |
591 |
|
env.Append(LIBPATH = [lib_path,]) |
592 |
|
except KeyError: |
593 |
|
pass |
594 |
|
|
595 |
|
try: |
596 |
|
umf_libs = env['umf_libs'] |
597 |
|
umf_libs+=umf_libs |
598 |
|
except KeyError: |
599 |
|
pass |
600 |
|
|
601 |
|
try: |
602 |
|
includes = env['ufc_path'] |
603 |
|
env.Append(CPPPATH = [includes,]) |
604 |
|
except KeyError: |
605 |
|
pass |
606 |
|
|
607 |
|
try: |
608 |
|
includes = env['amd_path'] |
609 |
|
env.Append(CPPPATH = [includes,]) |
610 |
|
except KeyError: |
611 |
|
pass |
612 |
|
|
613 |
|
try: |
614 |
|
lib_path = env['amd_lib_path'] |
615 |
|
env.Append(LIBPATH = [lib_path,]) |
616 |
|
except KeyError: |
617 |
|
pass |
618 |
|
|
619 |
|
try: |
620 |
|
amd_libs = env['amd_libs'] |
621 |
|
umf_libs+=amd_libs |
622 |
|
except KeyError: |
623 |
|
pass |
624 |
|
|
625 |
|
# ============= set TRILINOS (but only with MPI) ===================================== |
626 |
|
if useMPI: |
627 |
|
try: |
628 |
|
includes = env['trilinos_path'] |
629 |
|
env.Append(CPPPATH = [includes,]) |
630 |
|
except KeyError: |
631 |
|
pass |
632 |
|
|
633 |
|
try: |
634 |
|
lib_path = env['trilinos_lib_path'] |
635 |
|
env.Append(LIBPATH = [lib_path,]) |
636 |
|
except KeyError: |
637 |
|
pass |
638 |
|
|
639 |
|
try: |
640 |
|
trilinos_libs = env['trilinos_libs'] |
641 |
|
except KeyError: |
642 |
|
trilinos_libs = [] |
643 |
|
else: |
644 |
|
trilinos_libs = [] |
645 |
|
|
646 |
|
# ============= set blas ===================================== |
647 |
try: |
try: |
648 |
includes = env['mkl_path'] |
includes = env['blas_path'] |
649 |
env.Append(CPPPATH = [includes,]) |
env.Append(CPPPATH = [includes,]) |
650 |
except KeyError: |
except KeyError: |
651 |
pass |
pass |
652 |
|
|
653 |
try: |
try: |
654 |
lib_path = env['mkl_lib_path'] |
lib_path = env['blas_lib_path'] |
655 |
env.Append(LIBPATH = [lib_path,]) |
env.Append(LIBPATH = [lib_path,]) |
656 |
except KeyError: |
except KeyError: |
657 |
pass |
pass |
658 |
|
|
659 |
try: |
try: |
660 |
mkl_libs = env['mkl_libs'] |
blas_libs = env['blas_libs'] |
661 |
except KeyError: |
except KeyError: |
662 |
mkl_libs = '' |
blas_libs = [ ] |
663 |
|
|
664 |
|
# ========== netcdf ==================================== |
665 |
try: |
try: |
666 |
includes = env['scsl_path'] |
useNetCDF = env['useNetCDF'] |
667 |
|
except KeyError: |
668 |
|
useNetCDF = 'yes' |
669 |
|
pass |
670 |
|
|
671 |
|
if useNetCDF == 'yes': |
672 |
|
try: |
673 |
|
netCDF_libs = env['netCDF_libs'] |
674 |
|
except KeyError: |
675 |
|
pass |
676 |
|
|
677 |
|
env.Append(LIBS = netCDF_libs) |
678 |
|
env.Append(CPPDEFINES = [ 'USE_NETCDF' ]) |
679 |
|
try: |
680 |
|
includes = env['netCDF_path'] |
681 |
|
env.Append(CPPPATH = [includes,]) |
682 |
|
except KeyError: |
683 |
|
pass |
684 |
|
|
685 |
|
try: |
686 |
|
lib_path = env['netCDF_lib_path'] |
687 |
|
env.Append(LIBPATH = [ lib_path, ]) |
688 |
|
env['ENV']['LD_LIBRARY_PATH']+=":"+lib_path |
689 |
|
if IS_WINDOWS_PLATFORM : |
690 |
|
env.PrependENVPath('PATH', lib_path) |
691 |
|
except KeyError: |
692 |
|
pass |
693 |
|
else: |
694 |
|
print "Warning: Installation is not configured with netCDF. Some I/O function may not be available." |
695 |
|
netCDF_libs=[ ] |
696 |
|
|
697 |
|
# ====================== boost ====================================== |
698 |
|
try: |
699 |
|
includes = env['boost_path'] |
700 |
env.Append(CPPPATH = [includes,]) |
env.Append(CPPPATH = [includes,]) |
701 |
except KeyError: |
except KeyError: |
702 |
pass |
pass |
703 |
try: |
try: |
704 |
lib_path = env['scsl_lib_path'] |
lib_path = env['boost_lib_path'] |
705 |
env.Append(LIBPATH = [lib_path,]) |
env.Append(LIBPATH = [lib_path,]) |
706 |
|
env['ENV']['LD_LIBRARY_PATH']+=":"+lib_path |
707 |
|
if IS_WINDOWS_PLATFORM : |
708 |
|
env.PrependENVPath('PATH', lib_path) |
709 |
except KeyError: |
except KeyError: |
710 |
pass |
pass |
711 |
try: |
try: |
712 |
scsl_libs = env['scsl_libs'] |
boost_lib = env['boost_lib'] |
713 |
except KeyError: |
except KeyError: |
714 |
scsl_libs = '' |
boost_lib = None |
715 |
|
# ====================== python ====================================== |
716 |
try: |
try: |
717 |
includes = env['umf_path'] |
includes = env['python_path'] |
718 |
env.Append(CPPPATH = [includes,]) |
env.Append(CPPPATH = [includes,]) |
719 |
except KeyError: |
except KeyError: |
720 |
pass |
pass |
721 |
try: |
try: |
722 |
lib_path = env['umf_lib_path'] |
lib_path = env['python_lib_path'] |
723 |
|
env['ENV']['LD_LIBRARY_PATH']+=":"+lib_path |
724 |
env.Append(LIBPATH = [lib_path,]) |
env.Append(LIBPATH = [lib_path,]) |
725 |
except KeyError: |
except KeyError: |
726 |
pass |
pass |
727 |
try: |
try: |
728 |
umf_libs = env['umf_libs'] |
python_lib = env['python_lib'] |
729 |
except KeyError: |
except KeyError: |
730 |
umf_libs = '' |
python_lib = None |
731 |
|
# =============== documentation ======================================= |
732 |
try: |
try: |
733 |
includes = env['boost_path'] |
doxygen_path = env['doxygen_path'] |
|
env.Append(CPPPATH = [includes,]) |
|
734 |
except KeyError: |
except KeyError: |
735 |
pass |
doxygen_path = None |
736 |
try: |
try: |
737 |
lib_path = env['boost_lib_path'] |
epydoc_path = env['epydoc_path'] |
|
env.Append(LIBPATH = [lib_path,]) |
|
738 |
except KeyError: |
except KeyError: |
739 |
pass |
epydoc_path = None |
740 |
|
# =============== ParMETIS ======================================= |
741 |
try: |
try: |
742 |
boost_lib = env['boost_lib'] |
parmetis_path = env['parmetis_path'] |
743 |
except KeyError: |
parmetis_lib_path = env['parmetis_lib_path'] |
744 |
boost_lib = None |
parmetis_lib = env['parmetis_lib'] |
745 |
|
except KeyError: |
746 |
|
parmetis_path = '' |
747 |
|
parmetis_lib_path = '' |
748 |
|
parmetis_lib = '' |
749 |
|
|
750 |
|
if useMPI and os.path.isdir(parmetis_lib_path): |
751 |
|
env.Append(CPPDEFINES = [ 'PARMETIS' ]) |
752 |
|
env.Append(CXXDEFINES = [ 'PARMETIS' ]) |
753 |
|
env.Append(CPPPATH = [parmetis_path]) |
754 |
|
env.Append(LIBPATH = [parmetis_lib_path]) |
755 |
|
env.Append(LIBS = parmetis_lib) |
756 |
|
# =============== PAPI ======================================= |
757 |
try: |
try: |
758 |
includes = env['cppunit_path'] |
includes = env['papi_path'] |
759 |
env.Append(CPPPATH = [includes,]) |
env.Append(CPPPATH = [includes,]) |
760 |
except KeyError: |
except KeyError: |
761 |
pass |
pass |
762 |
try: |
try: |
763 |
lib_path = env['cppunit_lib_path'] |
lib_path = env['papi_lib_path'] |
764 |
env.Append(LIBPATH = [lib_path,]) |
env.Append(LIBPATH = [lib_path,]) |
765 |
except KeyError: |
except KeyError: |
766 |
pass |
pass |
767 |
try: |
try: |
768 |
cppunit_lib = env['cppunit_lib'] |
papi_libs = env['papi_libs'] |
769 |
except KeyError: |
except KeyError: |
770 |
boost_lib = None |
papi_libs = None |
771 |
|
# ============= set mpi ===================================== |
772 |
|
if useMPI: |
773 |
|
env.Append(CPPDEFINES=['PASO_MPI', 'MPI_NO_CPPBIND']) |
774 |
|
try: |
775 |
|
includes = env['mpi_path'] |
776 |
|
env.Append(CPPPATH = [includes,]) |
777 |
|
except KeyError: |
778 |
|
pass |
779 |
|
try: |
780 |
|
lib_path = env['mpi_lib_path'] |
781 |
|
env.Append(LIBPATH = [lib_path,]) |
782 |
|
env['ENV']['LD_LIBRARY_PATH']+=":"+lib_path |
783 |
|
except KeyError: |
784 |
|
pass |
785 |
|
try: |
786 |
|
mpi_libs = env['mpi_libs'] |
787 |
|
except KeyError: |
788 |
|
mpi_libs = [] |
789 |
|
|
790 |
|
try: |
791 |
|
mpi_run = env['mpi_run'] |
792 |
|
except KeyError: |
793 |
|
mpi_run = '' |
794 |
|
|
795 |
|
try: |
796 |
|
mpich_ignore_cxx_seek=env['MPICH_IGNORE_CXX_SEEK'] |
797 |
|
env.Append(CPPDEFINES = [ mpich_ignore_cxx_seek ] ) |
798 |
|
except KeyError: |
799 |
|
pass |
800 |
|
else: |
801 |
|
mpi_libs=[] |
802 |
|
mpi_run = mpi_run_default |
803 |
|
# =========== zip files =========================================== |
804 |
try: |
try: |
805 |
includes = env['python_path'] |
includes = env['papi_path'] |
806 |
env.Append(CPPPATH = [includes,]) |
env.Append(CPPPATH = [includes,]) |
807 |
except KeyError: |
except KeyError: |
808 |
pass |
pass |
809 |
try: |
try: |
810 |
lib_path = env['python_lib_path'] |
lib_path = env['papi_lib_path'] |
811 |
env.Append(LIBPATH = [lib_path,]) |
env.Append(LIBPATH = [lib_path,]) |
812 |
except KeyError: |
except KeyError: |
813 |
pass |
pass |
814 |
try: |
try: |
815 |
python_lib = env['python_lib'] |
papi_libs = env['papi_libs'] |
816 |
|
except KeyError: |
817 |
|
papi_libs = None |
818 |
|
try: |
819 |
|
papi_instrument_solver = env['papi_instrument_solver'] |
820 |
except KeyError: |
except KeyError: |
821 |
python_lib = None |
papi_instrument_solver = None |
822 |
|
|
823 |
|
|
824 |
|
# ============= and some helpers ===================================== |
825 |
try: |
try: |
826 |
doxygen_path = env['doxygen_path'] |
doxygen_path = env['doxygen_path'] |
827 |
except KeyError: |
except KeyError: |
828 |
doxygen_path = None |
doxygen_path = None |
829 |
try: |
try: |
830 |
epydoc_path = env['epydoc_path'] |
epydoc_path = env['epydoc_path'] |
831 |
except KeyError: |
except KeyError: |
832 |
epydoc_path = None |
epydoc_path = None |
833 |
try: |
try: |
834 |
epydoc_pythonpath = env['epydoc_pythonpath'] |
src_zipfile = env.File(env['src_zipfile']) |
835 |
except KeyError: |
except KeyError: |
836 |
epydoc_pythonpath = None |
src_zipfile = None |
837 |
try: |
try: |
838 |
includes = env['papi_path'] |
test_zipfile = env.File(env['test_zipfile']) |
|
env.Append(CPPPATH = [includes,]) |
|
839 |
except KeyError: |
except KeyError: |
840 |
pass |
test_zipfile = None |
841 |
try: |
try: |
842 |
lib_path = env['papi_lib_path'] |
examples_zipfile = env.File(env['examples_zipfile']) |
|
env.Append(LIBPATH = [lib_path,]) |
|
843 |
except KeyError: |
except KeyError: |
844 |
pass |
examples_zipfile = None |
845 |
|
|
846 |
try: |
try: |
847 |
papi_libs = env['papi_libs'] |
src_tarfile = env.File(env['src_tarfile']) |
848 |
except KeyError: |
except KeyError: |
849 |
papi_libs = None |
src_tarfile = None |
850 |
|
try: |
851 |
|
test_tarfile = env.File(env['test_tarfile']) |
852 |
|
except KeyError: |
853 |
|
test_tarfile = None |
854 |
|
try: |
855 |
|
examples_tarfile = env.File(env['examples_tarfile']) |
856 |
|
except KeyError: |
857 |
|
examples_tarfile = None |
858 |
|
|
859 |
# Targets |
try: |
860 |
env.Default(libinstall) |
guide_pdf = env.File(env['guide_pdf']) |
861 |
env.Default(incinstall) |
except KeyError: |
862 |
env.Default(pyinstall) |
guide_pdf = None |
863 |
env.Alias('build_tests') |
|
864 |
env.Alias('run_tests') |
try: |
865 |
env.Alias('py_tests') |
guide_html_index = env.File('index.htm',env['guide_html']) |
866 |
env.Alias('basic_py_tests') |
except KeyError: |
867 |
env.Alias('all_tests', ['run_tests', 'py_tests']) |
guide_html_index = None |
868 |
|
|
869 |
|
try: |
870 |
|
api_epydoc = env.Dir(env['api_epydoc']) |
871 |
|
except KeyError: |
872 |
|
api_epydoc = None |
873 |
|
|
874 |
|
try: |
875 |
|
api_doxygen = env.Dir(env['api_doxygen']) |
876 |
|
except KeyError: |
877 |
|
api_doxygen = None |
878 |
|
|
879 |
|
try: |
880 |
|
svn_pipe = os.popen("svnversion -n .") |
881 |
|
global_revision = svn_pipe.readlines() |
882 |
|
svn_pipe.close() |
883 |
|
global_revision = re.sub(":.*", "", global_revision[0]) |
884 |
|
global_revision = re.sub("[^0-9]", "", global_revision) |
885 |
|
except: |
886 |
|
global_revision="-1" |
887 |
|
print "Warning: unable to recover global revsion number." |
888 |
|
if global_revision == "": global_revision="0" |
889 |
|
print "Revision number is %s."%global_revision |
890 |
|
env.Append(CPPDEFINES = "SVN_VERSION="+global_revision) |
891 |
|
|
892 |
# Python install - esys __init__.py |
# Python install - esys __init__.py |
893 |
# This is just an empty file but stills need to be touched so add a special target and Command. Note you can't use the scons Touch() function as it will not |
init_target = env.Command(pyinstall+'/__init__.py', None, Touch('$TARGET')) |
894 |
# create the file if it doesn't exist |
|
895 |
env.Command('esys/__init__.py', None, 'touch $TARGET') |
# FIXME: exinstall and friends related to examples are not working. |
896 |
|
build_target = env.Alias('build',[libinstall,incinstall,pyinstall,init_target]) |
897 |
|
|
898 |
|
env.Default(build_target) |
899 |
|
|
900 |
|
# Zipgets |
901 |
|
env.Alias('release_src',[ src_zipfile, src_tarfile ]) |
902 |
|
env.Alias('release_tests',[ test_zipfile, test_tarfile]) |
903 |
|
env.Alias('release_examples',[ examples_zipfile, examples_tarfile]) |
904 |
|
env.Alias('examples_zipfile',examples_zipfile) |
905 |
|
env.Alias('examples_tarfile',examples_tarfile) |
906 |
|
env.Alias('api_epydoc',api_epydoc) |
907 |
|
env.Alias('api_doxygen',api_doxygen) |
908 |
|
env.Alias('guide_html_index',guide_html_index) |
909 |
|
env.Alias('guide_pdf', guide_pdf) |
910 |
|
env.Alias('docs',[ 'release_examples', 'guide_pdf', api_epydoc, api_doxygen, guide_html_index]) |
911 |
|
env.Alias('release', ['release_src', 'release_tests', 'docs']) |
912 |
|
|
913 |
|
env.Alias('build_tests',build_target) # target to build all C++ tests |
914 |
|
env.Alias('build_py_tests',build_target) # target to build all python tests |
915 |
|
env.Alias('build_all_tests', [ 'build_tests', 'build_py_tests' ] ) # target to build all python tests |
916 |
|
env.Alias('run_tests', 'build_tests') # target to run all C++ test |
917 |
|
env.Alias('py_tests', 'build_py_tests') # taget to run all released python tests |
918 |
|
env.Alias('all_tests', ['run_tests', 'py_tests']) # target to run all C++ and released python tests |
919 |
|
|
920 |
|
|
921 |
# Allow sconscripts to see the env |
# Allow sconscripts to see the env |
922 |
Export(["env", "incinstall", "libinstall", "pyinstall", "dodebug", "mkl_libs", "scsl_libs", "umf_libs", |
Export(["IS_WINDOWS_PLATFORM", "env", "incinstall", "libinstall", "pyinstall", "dodebug", "mkl_libs", "scsl_libs", "umf_libs", "blas_libs", "netCDF_libs", "useNetCDF", "mpi_run", |
923 |
"boost_lib", "python_lib", "doxygen_path", "epydoc_path", "epydoc_pythonpath", "papi_libs", "cppunit_lib", "sys_libs" ]) |
"boost_lib", "python_lib", "doxygen_path", "epydoc_path", "papi_libs", |
924 |
|
"sys_libs", "test_zipfile", "src_zipfile", "test_tarfile", "src_tarfile", "examples_tarfile", "examples_zipfile", "trilinos_libs", "mpi_libs", "papi_instrument_solver", |
925 |
|
"guide_pdf", "guide_html_index", "api_epydoc", "api_doxygen", "useMPI" ]) |
926 |
|
|
927 |
# End initialisation section |
# End initialisation section |
928 |
# Begin configuration section |
# Begin configuration section |
929 |
|
# adds this file and the scons option directore to the source tar |
930 |
|
release_srcfiles=[env.File('SConstruct'),env.Dir('lib'),env.Dir('include'),]+[ env.File(x) for x in glob.glob('scons/*.py') ] |
931 |
|
release_testfiles=[env.File('README_TESTS'),] |
932 |
|
env.Zip(src_zipfile, release_srcfiles) |
933 |
|
env.Zip(test_zipfile, release_testfiles) |
934 |
|
try: |
935 |
|
env.Tar(src_tarfile, release_srcfiles) |
936 |
|
env.Tar(test_tarfile, release_testfiles) |
937 |
|
except AttributeError: |
938 |
|
pass |
939 |
# Insert new components to be build here |
# Insert new components to be build here |
940 |
# FIXME: might be nice to replace this verbosity with a list of targets and some |
# FIXME: might be nice to replace this verbosity with a list of targets and some |
941 |
# FIXME: nifty python to create the lengthy but very similar env.Sconscript lines |
# FIXME: nifty python to create the lengthy but very similar env.Sconscript lines |
942 |
# Third Party libraries |
# Third Party libraries |
943 |
env.SConscript(dirs = ['tools/CppUnitTest/src'], build_dir='build/$PLATFORM/tools/CppUnitTest', duplicate=0) |
env.SConscript(dirs = ['tools/CppUnitTest/src'], build_dir='build/$PLATFORM/tools/CppUnitTest', duplicate=0) |
944 |
# C/C++ Libraries |
# C/C++ Libraries |
|
env.SConscript(dirs = ['paso/src'], build_dir='build/$PLATFORM/paso', duplicate=0) |
|
|
env.SConscript(dirs = ['bruce/src'], build_dir='build/$PLATFORM/bruce', duplicate=0) |
|
|
env.SConscript(dirs = ['escript/src'], build_dir='build/$PLATFORM/escript', duplicate=0) |
|
945 |
env.SConscript(dirs = ['esysUtils/src'], build_dir='build/$PLATFORM/esysUtils', duplicate=0) |
env.SConscript(dirs = ['esysUtils/src'], build_dir='build/$PLATFORM/esysUtils', duplicate=0) |
946 |
|
env.SConscript(dirs = ['escript/src'], build_dir='build/$PLATFORM/escript', duplicate=0) |
947 |
|
env.SConscript(dirs = ['paso/src'], build_dir='build/$PLATFORM/paso', duplicate=0) |
948 |
|
# bruce is removed for now as it doesn't really do anything |
949 |
|
# env.SConscript(dirs = ['bruce/src'], build_dir='build/$PLATFORM/bruce', duplicate=0) |
950 |
env.SConscript(dirs = ['finley/src'], build_dir='build/$PLATFORM/finley', duplicate=0) |
env.SConscript(dirs = ['finley/src'], build_dir='build/$PLATFORM/finley', duplicate=0) |
951 |
env.SConscript(dirs = ['modellib/py_src'], build_dir='build/$PLATFORM/modellib', duplicate=0) |
env.SConscript(dirs = ['modellib/py_src'], build_dir='build/$PLATFORM/modellib', duplicate=0) |
952 |
|
env.SConscript(dirs = ['doc'], build_dir='build/$PLATFORM/doc', duplicate=0) |
953 |
|
env.SConscript(dirs = ['pyvisi/py_src'], build_dir='build/$PLATFORM/pyvisi', duplicate=0) |
954 |
|
env.SConscript(dirs = ['pycad/py_src'], build_dir='build/$PLATFORM/pycad', duplicate=0) |
955 |
|
env.SConscript(dirs = ['pythonMPI/src'], build_dir='build/$PLATFORM/pythonMPI', duplicate=0) |
956 |
|
#env.SConscript(dirs = ['../test'], build_dir='../test/build', duplicate=0) |
957 |
|
|
958 |
|
|
959 |
|
syslib_install_target = env.installDirectory(sys_libinstall,libinstall) |
960 |
|
syspy_install_target = env.installDirectory(sys_pyinstall,pyinstall,recursive=True) |
961 |
|
|
962 |
# FIXME:need to be incorporated into build system |
install_target = env.Alias("install", env.Flatten([syslib_install_target, syspy_install_target]) ) |
|
# FIXME: 'pyvisi/SConstruct'] |
|
|
# FIXME: 'doc/SConstruct'] |
|
|
# FIXME: 'doc/SConstruct'] |
|