1 |
# Copyright 2006 by ACcESS MNRF |
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 |
9 |
# Begin initialisation Section |
10 |
# all of this section just intialises default environments and helper |
11 |
# scripts. You shouldn't need to modify this section. |
12 |
EnsureSConsVersion(0,96,91) |
13 |
EnsurePythonVersion(2,3) |
14 |
|
15 |
#=============================================================== |
16 |
# import tools: |
17 |
import glob |
18 |
import sys, os, re |
19 |
# Add our extensions |
20 |
if sys.path.count('scons')==0: sys.path.append('scons') |
21 |
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 |
66 |
# 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 |
68 |
# DO NOT CHANGE THEM HERE |
69 |
# Where to install? |
70 |
#============================================================================================== |
71 |
# |
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 |
81 |
hostname = re.sub("[^0-9a-zA-Z]", "_", socket.gethostname().split('.')[0]) |
82 |
tmp = os.path.join("scons",hostname+"_options.py") |
83 |
|
84 |
if os.path.isfile(tmp) : |
85 |
options_file = tmp |
86 |
|
87 |
IS_WINDOWS_PLATFORM = (os.name== "nt") |
88 |
|
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) |
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( |
191 |
# Where to install esys stuff |
192 |
('incinstall', 'where the esys headers will be installed', Dir('#.').abspath+'/include'), |
193 |
('libinstall', 'where the esys libraries will be installed', dir_libraries), |
194 |
('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 |
210 |
BoolOption('dodebug', 'Do you want a debug build?', 'no'), |
211 |
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), |
214 |
('cc_flags','C compiler flags to use (Release build)', cc_flags_default), |
215 |
('cc_flags_debug', 'C compiler flags to use (Debug build)', cc_flags_debug_default), |
216 |
('cxx_flags', 'C++ compiler flags to use (Release build)', cxx_flags_default), |
217 |
('cxx_flags_debug', 'C++ compiler flags to use (Debug build)', cxx_flags_debug_default), |
218 |
('omp_flags', 'OpenMP compiler flags to use (Release build)', ''), |
219 |
('omp_flags_debug', 'OpenMP compiler flags to use (Debug build)', ''), |
220 |
('ar_flags', 'Static library archiver flags to use', None), |
221 |
('sys_libs', 'System libraries to link with', None), |
222 |
('tar_flags','flags for zip files','-c -z'), |
223 |
# MKL |
224 |
PathOption('mkl_path', 'Path to MKL includes', None), |
225 |
PathOption('mkl_lib_path', 'Path to MKL libs', None), |
226 |
('mkl_libs', 'MKL libraries to link with', None), |
227 |
# SCSL |
228 |
PathOption('scsl_path', 'Path to SCSL includes', None), |
229 |
PathOption('scsl_lib_path', 'Path to SCSL libs', None), |
230 |
('scsl_libs', 'SCSL libraries to link with', None), |
231 |
('scsl_libs_MPI', 'SCSL libraries to link with for MPI build', None), |
232 |
# UMFPACK |
233 |
PathOption('ufc_path', 'Path to UFconfig includes', ufc_path_default), |
234 |
PathOption('umf_path', 'Path to UMFPACK includes', umf_path_default), |
235 |
PathOption('umf_lib_path', 'Path to UMFPACK libs', umf_lib_path_default), |
236 |
('umf_libs', 'UMFPACK libraries to link with', umf_libs_default), |
237 |
# AMD (used by UMFPACK) |
238 |
PathOption('amd_path', 'Path to AMD includes', amd_path_default), |
239 |
PathOption('amd_lib_path', 'Path to AMD libs', amd_lib_path_default), |
240 |
('amd_libs', 'AMD libraries to link with', amd_libs_default), |
241 |
# ParMETIS |
242 |
('parmetis_path', 'Path to ParMETIS includes', ''), |
243 |
('parmetis_lib_path', 'Path to ParMETIS library', ''), |
244 |
('parmetis_lib', 'ParMETIS library to link with', []), |
245 |
# TRILINOS |
246 |
PathOption('trilinos_path', 'Path to TRILINOS includes', None), |
247 |
PathOption('trilinos_lib_path', 'Path to TRILINOS libs', None), |
248 |
('trilinos_libs', 'TRILINOS libraries to link with', None), |
249 |
# BLAS |
250 |
PathOption('blas_path', 'Path to BLAS includes', None), |
251 |
PathOption('blas_lib_path', 'Path to BLAS libs', None), |
252 |
('blas_libs', 'BLAS libraries to link with', None), |
253 |
# netCDF |
254 |
('useNetCDF', 'switch on/off the usage of netCDF', useNetCDF_default), |
255 |
PathOption('netCDF_path', 'Path to netCDF includes', netCDF_path_default), |
256 |
PathOption('netCDF_lib_path', 'Path to netCDF libs', netCDF_lib_path_default), |
257 |
('netCDF_libs', 'netCDF C++ libraries to link with', netCDF_libs_default), |
258 |
# Python |
259 |
# locations of include files for python |
260 |
# FIXME: python_path should be python_inc_path and the same for boost etc. |
261 |
PathOption('python_path', 'Path to Python includes', python_path_default), |
262 |
PathOption('python_lib_path', 'Path to Python libs', python_lib_path_default), |
263 |
('python_lib', 'Python libraries to link with', python_lib_default), |
264 |
('python_cmd', 'Python command', 'python'), |
265 |
# Boost |
266 |
PathOption('boost_path', 'Path to Boost includes', boost_path_default), |
267 |
PathOption('boost_lib_path', 'Path to Boost libs', boost_lib_path_default), |
268 |
('boost_lib', 'Boost libraries to link with', boost_lib_default), |
269 |
# Doc building |
270 |
# PathOption('doxygen_path', 'Path to Doxygen executable', None), |
271 |
# PathOption('epydoc_path', 'Path to Epydoc executable', None), |
272 |
# PAPI |
273 |
PathOption('papi_path', 'Path to PAPI includes', None), |
274 |
PathOption('papi_lib_path', 'Path to PAPI libs', None), |
275 |
('papi_libs', 'PAPI libraries to link with', None), |
276 |
('papi_instrument_solver', 'use PAPI in Solver.c to instrument each iteration of the solver', None), |
277 |
# MPI |
278 |
BoolOption('useMPI', 'Compile parallel version using MPI', useMPI_default), |
279 |
('MPICH_IGNORE_CXX_SEEK', 'name of macro to ignore MPI settings of C++ SEEK macro (for MPICH)' , 'MPICH_IGNORE_CXX_SEEK'), |
280 |
PathOption('mpi_path', 'Path to MPI includes', mpi_path_default), |
281 |
('mpi_run', 'mpirun name' , mpi_run_default), |
282 |
PathOption('mpi_lib_path', 'Path to MPI libs (needs to be added to the LD_LIBRARY_PATH)',mpi_lib_path_default), |
283 |
('mpi_libs', 'MPI libraries to link with (needs to be shared!)', mpi_libs_default) |
284 |
) |
285 |
#================================================================================================= |
286 |
# |
287 |
# Note: On the Altix the intel compilers are not automatically |
288 |
# detected by scons intelc.py script. The Altix has a different directory |
289 |
# path and in some locations the "modules" facility is used to support |
290 |
# multiple compiler versions. This forces the need to import the users PATH |
291 |
# environment which isn't the "scons way" |
292 |
# 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) |
293 |
# FIXME: Perhaps a modification to intelc.py will allow better support for ia64 on altix |
294 |
# |
295 |
|
296 |
if IS_WINDOWS_PLATFORM: |
297 |
env = Environment(tools = ['default', 'msvc'], options = opts) |
298 |
#env = Environment(tools = ['default', 'intelc'], options = opts) |
299 |
else: |
300 |
if os.uname()[4]=='ia64': |
301 |
env = Environment(tools = ['default', 'intelc'], options = opts) |
302 |
if env['CXX'] == 'icpc': |
303 |
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 |
304 |
else: |
305 |
env = Environment(tools = ['default'], options = opts) |
306 |
Help(opts.GenerateHelpText(env)) |
307 |
|
308 |
if env['bounds_check']: |
309 |
env.Append(CPPDEFINES = [ 'BOUNDS_CHECK' ]) |
310 |
env.Append(CXXDEFINES = [ 'BOUNDS_CHECK' ]) |
311 |
bounds_check = env['bounds_check'] |
312 |
else: |
313 |
bounds_check = 0 |
314 |
|
315 |
#================================================================================================= |
316 |
# |
317 |
# Initialise Scons Build Environment |
318 |
# check for user environment variables we are interested in |
319 |
try: |
320 |
tmp = os.environ['PYTHONPATH'] |
321 |
env['ENV']['PYTHONPATH'] = tmp |
322 |
except KeyError: |
323 |
pass |
324 |
|
325 |
env.PrependENVPath('PYTHONPATH', source_root) |
326 |
|
327 |
try: |
328 |
omp_num_threads = os.environ['OMP_NUM_THREADS'] |
329 |
except KeyError: |
330 |
omp_num_threads = 1 |
331 |
env['ENV']['OMP_NUM_THREADS'] = omp_num_threads |
332 |
|
333 |
try: |
334 |
path = os.environ['PATH'] |
335 |
env['ENV']['PATH'] = path |
336 |
except KeyError: |
337 |
omp_num_threads = 1 |
338 |
|
339 |
env['ENV']['OMP_NUM_THREADS'] = omp_num_threads |
340 |
|
341 |
|
342 |
# Copy some variables from the system environment to the build environment |
343 |
try: |
344 |
env['ENV']['DISPLAY'] = os.environ['DISPLAY'] |
345 |
env['ENV']['XAUTHORITY'] = os.environ['XAUTHORITY'] |
346 |
home_temp = os.environ['HOME'] # MPICH2's mpd needs $HOME to find $HOME/.mpd.conf |
347 |
env['ENV']['HOME'] = home_temp |
348 |
except KeyError: |
349 |
pass |
350 |
|
351 |
try: |
352 |
tmp = os.environ['PATH'] |
353 |
env['ENV']['PATH'] = tmp |
354 |
except KeyError: |
355 |
pass |
356 |
|
357 |
try: |
358 |
tmp = os.environ['LD_LIBRARY_PATH'] |
359 |
print tmp |
360 |
env['ENV']['LD_LIBRARY_PATH'] = tmp |
361 |
except KeyError: |
362 |
pass |
363 |
#========================================================================== |
364 |
# |
365 |
# Add some customer builders |
366 |
# |
367 |
py_builder = Builder(action = scons_extensions.build_py, suffix = '.pyc', src_suffix = '.py', single_source=True) |
368 |
env.Append(BUILDERS = {'PyCompile' : py_builder}); |
369 |
|
370 |
runUnitTest_builder = Builder(action = scons_extensions.runUnitTest, suffix = '.passed', |
371 |
src_suffix=env['PROGSUFFIX'], single_source=True) |
372 |
|
373 |
env.Append(BUILDERS = {'RunUnitTest' : runUnitTest_builder}); |
374 |
|
375 |
runPyUnitTest_builder = Builder(action = scons_extensions.runPyUnitTest, suffix = '.passed', src_suffic='.py', single_source=True) |
376 |
env.Append(BUILDERS = {'RunPyUnitTest' : runPyUnitTest_builder}); |
377 |
|
378 |
# Convert the options which are held in environment variable into python variables for ease of handling and configure compilation options |
379 |
try: |
380 |
incinstall = env['incinstall'] |
381 |
env.Append(CPPPATH = [incinstall,]) |
382 |
except KeyError: |
383 |
incinstall = None |
384 |
try: |
385 |
libinstall = env['libinstall'] |
386 |
env.Append(LIBPATH = [libinstall,]) # Adds -L for building of libescript.so libfinley.so escriptcpp.so finleycpp.so |
387 |
env.PrependENVPath('LD_LIBRARY_PATH', libinstall) |
388 |
if IS_WINDOWS_PLATFORM : |
389 |
env.PrependENVPath('PATH', libinstall) |
390 |
env.PrependENVPath('PATH', env['boost_lib_path']) |
391 |
except KeyError: |
392 |
libinstall = None |
393 |
try: |
394 |
pyinstall = env['pyinstall'] # all targets will install into pyinstall/esys but PYTHONPATH points at straight pyinstall so you go import esys.escript etc |
395 |
except KeyError: |
396 |
pyinstall = None |
397 |
|
398 |
try: |
399 |
cc_defines = env['cc_defines'] |
400 |
env.Append(CPPDEFINES = cc_defines) |
401 |
except KeyError: |
402 |
pass |
403 |
try: |
404 |
flags = env['ar_flags'] |
405 |
env.Append(ARFLAGS = flags) |
406 |
except KeyError: |
407 |
ar_flags = None |
408 |
try: |
409 |
sys_libs = env['sys_libs'] |
410 |
except KeyError: |
411 |
sys_libs = [] |
412 |
|
413 |
try: |
414 |
tar_flags = env['tar_flags'] |
415 |
env.Replace(TARFLAGS = tar_flags) |
416 |
except KeyError: |
417 |
pass |
418 |
|
419 |
try: |
420 |
exinstall = env['exinstall'] |
421 |
except KeyError: |
422 |
exinstall = None |
423 |
try: |
424 |
sys_libinstall = env['sys_libinstall'] |
425 |
except KeyError: |
426 |
sys_libinstall = None |
427 |
try: |
428 |
sys_pyinstall = env['sys_pyinstall'] |
429 |
except KeyError: |
430 |
sys_pyinstall = None |
431 |
try: |
432 |
sys_exinstall = env['sys_exinstall'] |
433 |
except KeyError: |
434 |
sys_exinstall = None |
435 |
|
436 |
# ====================== debugging =================================== |
437 |
try: |
438 |
dodebug = env['dodebug'] |
439 |
except KeyError: |
440 |
dodebug = None |
441 |
|
442 |
# === switch on omp =================================================== |
443 |
try: |
444 |
omp_flags = env['omp_flags'] |
445 |
except KeyError: |
446 |
omp_flags = '' |
447 |
|
448 |
try: |
449 |
omp_flags_debug = env['omp_flags_debug'] |
450 |
except KeyError: |
451 |
omp_flags_debug = '' |
452 |
|
453 |
# ========= use mpi? ===================================================== |
454 |
try: |
455 |
useMPI = env['useMPI'] |
456 |
except KeyError: |
457 |
useMPI = None |
458 |
# ========= set compiler flags =========================================== |
459 |
|
460 |
if dodebug: |
461 |
try: |
462 |
flags = env['cc_flags_debug'] + ' ' + omp_flags_debug |
463 |
env.Append(CCFLAGS = flags) |
464 |
except KeyError: |
465 |
pass |
466 |
else: |
467 |
try: |
468 |
flags = env['cc_flags'] + ' ' + omp_flags |
469 |
env.Append(CCFLAGS = flags) |
470 |
except KeyError: |
471 |
pass |
472 |
if dodebug: |
473 |
try: |
474 |
flags = env['cxx_flags_debug'] |
475 |
env.Append(CXXFLAGS = flags) |
476 |
except KeyError: |
477 |
pass |
478 |
else: |
479 |
try: |
480 |
flags = env['cxx_flags'] |
481 |
env.Append(CXXFLAGS = flags) |
482 |
except KeyError: |
483 |
pass |
484 |
try: |
485 |
if env['CC'] == 'gcc': env.Append(CCFLAGS = "-pedantic-errors -Wno-long-long") |
486 |
except: |
487 |
pass |
488 |
|
489 |
# ============= Remember what options were used in the compile ===================================== |
490 |
if not IS_WINDOWS_PLATFORM: |
491 |
env.Execute("/bin/rm -f " + libinstall + "/Compiled.with.*") |
492 |
if dodebug: env.Execute("touch " + libinstall + "/Compiled.with.debug") |
493 |
if useMPI: env.Execute("touch " + libinstall + "/Compiled.with.mpi") |
494 |
if omp_flags != '': env.Execute("touch " + libinstall + "/Compiled.with.OpenMP") |
495 |
if bounds_check: env.Execute("touch " + libinstall + "/Compiled.with.bounds_check") |
496 |
|
497 |
# ============= set mkl (but only of no MPI) ===================================== |
498 |
if not useMPI: |
499 |
try: |
500 |
includes = env['mkl_path'] |
501 |
env.Append(CPPPATH = [includes,]) |
502 |
except KeyError: |
503 |
pass |
504 |
|
505 |
try: |
506 |
lib_path = env['mkl_lib_path'] |
507 |
env.Append(LIBPATH = [lib_path,]) |
508 |
env['ENV']['LD_LIBRARY_PATH']+=":"+lib_path |
509 |
except KeyError: |
510 |
pass |
511 |
|
512 |
try: |
513 |
mkl_libs = env['mkl_libs'] |
514 |
except KeyError: |
515 |
mkl_libs = [] |
516 |
else: |
517 |
mkl_libs = [] |
518 |
|
519 |
# ============= set scsl (but only of no MPI) ===================================== |
520 |
if not useMPI: |
521 |
try: |
522 |
includes = env['scsl_path'] |
523 |
env.Append(CPPPATH = [includes,]) |
524 |
except KeyError: |
525 |
pass |
526 |
|
527 |
try: |
528 |
lib_path = env['scsl_lib_path'] |
529 |
env.Append(LIBPATH = [lib_path,]) |
530 |
env['ENV']['LD_LIBRARY_PATH']+=":"+lib_path |
531 |
except KeyError: |
532 |
pass |
533 |
|
534 |
try: |
535 |
scsl_libs = env['scsl_libs'] |
536 |
except KeyError: |
537 |
scsl_libs = [ ] |
538 |
|
539 |
else: |
540 |
scsl_libs = [] |
541 |
|
542 |
# ============= set TRILINOS (but only with MPI) ===================================== |
543 |
if useMPI: |
544 |
try: |
545 |
includes = env['trilinos_path'] |
546 |
env.Append(CPPPATH = [includes,]) |
547 |
except KeyError: |
548 |
pass |
549 |
|
550 |
try: |
551 |
lib_path = env['trilinos_lib_path'] |
552 |
env.Append(LIBPATH = [lib_path,]) |
553 |
except KeyError: |
554 |
pass |
555 |
|
556 |
try: |
557 |
trilinos_libs = env['trilinos_libs'] |
558 |
except KeyError: |
559 |
trilinos_libs = [] |
560 |
else: |
561 |
trilinos_libs = [] |
562 |
|
563 |
|
564 |
# ============= set umfpack (but only without MPI) ===================================== |
565 |
umf_libs=[ ] |
566 |
if not useMPI: |
567 |
try: |
568 |
includes = env['umf_path'] |
569 |
env.Append(CPPPATH = [includes,]) |
570 |
except KeyError: |
571 |
pass |
572 |
|
573 |
try: |
574 |
lib_path = env['umf_lib_path'] |
575 |
env.Append(LIBPATH = [lib_path,]) |
576 |
except KeyError: |
577 |
pass |
578 |
|
579 |
try: |
580 |
umf_libs = env['umf_libs'] |
581 |
umf_libs+=umf_libs |
582 |
except KeyError: |
583 |
pass |
584 |
|
585 |
try: |
586 |
includes = env['ufc_path'] |
587 |
env.Append(CPPPATH = [includes,]) |
588 |
except KeyError: |
589 |
pass |
590 |
|
591 |
try: |
592 |
includes = env['amd_path'] |
593 |
env.Append(CPPPATH = [includes,]) |
594 |
except KeyError: |
595 |
pass |
596 |
|
597 |
try: |
598 |
lib_path = env['amd_lib_path'] |
599 |
env.Append(LIBPATH = [lib_path,]) |
600 |
except KeyError: |
601 |
pass |
602 |
|
603 |
try: |
604 |
amd_libs = env['amd_libs'] |
605 |
umf_libs+=amd_libs |
606 |
except KeyError: |
607 |
pass |
608 |
|
609 |
# ============= set TRILINOS (but only with MPI) ===================================== |
610 |
if useMPI: |
611 |
try: |
612 |
includes = env['trilinos_path'] |
613 |
env.Append(CPPPATH = [includes,]) |
614 |
except KeyError: |
615 |
pass |
616 |
|
617 |
try: |
618 |
lib_path = env['trilinos_lib_path'] |
619 |
env.Append(LIBPATH = [lib_path,]) |
620 |
except KeyError: |
621 |
pass |
622 |
|
623 |
try: |
624 |
trilinos_libs = env['trilinos_libs'] |
625 |
except KeyError: |
626 |
trilinos_libs = [] |
627 |
else: |
628 |
trilinos_libs = [] |
629 |
|
630 |
# ============= set blas ===================================== |
631 |
try: |
632 |
includes = env['blas_path'] |
633 |
env.Append(CPPPATH = [includes,]) |
634 |
except KeyError: |
635 |
pass |
636 |
|
637 |
try: |
638 |
lib_path = env['blas_lib_path'] |
639 |
env.Append(LIBPATH = [lib_path,]) |
640 |
except KeyError: |
641 |
pass |
642 |
|
643 |
try: |
644 |
blas_libs = env['blas_libs'] |
645 |
except KeyError: |
646 |
blas_libs = [ ] |
647 |
|
648 |
# ========== netcdf ==================================== |
649 |
try: |
650 |
useNetCDF = env['useNetCDF'] |
651 |
except KeyError: |
652 |
useNetCDF = 'yes' |
653 |
pass |
654 |
|
655 |
if useNetCDF == 'yes': |
656 |
try: |
657 |
netCDF_libs = env['netCDF_libs'] |
658 |
except KeyError: |
659 |
pass |
660 |
|
661 |
env.Append(LIBS = netCDF_libs) |
662 |
env.Append(CPPDEFINES = [ 'USE_NETCDF' ]) |
663 |
try: |
664 |
includes = env['netCDF_path'] |
665 |
env.Append(CPPPATH = [includes,]) |
666 |
except KeyError: |
667 |
pass |
668 |
|
669 |
try: |
670 |
lib_path = env['netCDF_lib_path'] |
671 |
env.Append(LIBPATH = [ lib_path, ]) |
672 |
env['ENV']['LD_LIBRARY_PATH']+=":"+lib_path |
673 |
if IS_WINDOWS_PLATFORM : |
674 |
env.PrependENVPath('PATH', lib_path) |
675 |
except KeyError: |
676 |
pass |
677 |
else: |
678 |
print "Warning: Installation is not configured with netCDF. Some I/O function may not be available." |
679 |
netCDF_libs=[ ] |
680 |
|
681 |
# ====================== boost ====================================== |
682 |
try: |
683 |
includes = env['boost_path'] |
684 |
env.Append(CPPPATH = [includes,]) |
685 |
except KeyError: |
686 |
pass |
687 |
try: |
688 |
lib_path = env['boost_lib_path'] |
689 |
env.Append(LIBPATH = [lib_path,]) |
690 |
env['ENV']['LD_LIBRARY_PATH']+=":"+lib_path |
691 |
if IS_WINDOWS_PLATFORM : |
692 |
env.PrependENVPath('PATH', lib_path) |
693 |
except KeyError: |
694 |
pass |
695 |
try: |
696 |
boost_lib = env['boost_lib'] |
697 |
except KeyError: |
698 |
boost_lib = None |
699 |
# ====================== python ====================================== |
700 |
try: |
701 |
includes = env['python_path'] |
702 |
env.Append(CPPPATH = [includes,]) |
703 |
except KeyError: |
704 |
pass |
705 |
try: |
706 |
lib_path = env['python_lib_path'] |
707 |
env['ENV']['LD_LIBRARY_PATH']+=":"+lib_path |
708 |
env.Append(LIBPATH = [lib_path,]) |
709 |
except KeyError: |
710 |
pass |
711 |
try: |
712 |
python_lib = env['python_lib'] |
713 |
except KeyError: |
714 |
python_lib = None |
715 |
# =============== documentation ======================================= |
716 |
try: |
717 |
doxygen_path = env['doxygen_path'] |
718 |
except KeyError: |
719 |
doxygen_path = None |
720 |
try: |
721 |
epydoc_path = env['epydoc_path'] |
722 |
except KeyError: |
723 |
epydoc_path = None |
724 |
# =============== ParMETIS ======================================= |
725 |
try: |
726 |
parmetis_path = env['parmetis_path'] |
727 |
parmetis_lib_path = env['parmetis_lib_path'] |
728 |
parmetis_lib = env['parmetis_lib'] |
729 |
except KeyError: |
730 |
parmetis_path = '' |
731 |
parmetis_lib_path = '' |
732 |
parmetis_lib = '' |
733 |
|
734 |
if useMPI and os.path.isdir(parmetis_lib_path): |
735 |
env.Append(CPPDEFINES = [ 'PARMETIS' ]) |
736 |
env.Append(CXXDEFINES = [ 'PARMETIS' ]) |
737 |
env.Append(CPPPATH = [parmetis_path]) |
738 |
env.Append(LIBPATH = [parmetis_lib_path]) |
739 |
env.Append(LIBS = parmetis_lib) |
740 |
# =============== PAPI ======================================= |
741 |
try: |
742 |
includes = env['papi_path'] |
743 |
env.Append(CPPPATH = [includes,]) |
744 |
except KeyError: |
745 |
pass |
746 |
try: |
747 |
lib_path = env['papi_lib_path'] |
748 |
env.Append(LIBPATH = [lib_path,]) |
749 |
except KeyError: |
750 |
pass |
751 |
try: |
752 |
papi_libs = env['papi_libs'] |
753 |
except KeyError: |
754 |
papi_libs = None |
755 |
# ============= set mpi ===================================== |
756 |
if useMPI: |
757 |
env.Append(CPPDEFINES=['PASO_MPI',]) |
758 |
try: |
759 |
includes = env['mpi_path'] |
760 |
env.Append(CPPPATH = [includes,]) |
761 |
except KeyError: |
762 |
pass |
763 |
try: |
764 |
lib_path = env['mpi_lib_path'] |
765 |
env.Append(LIBPATH = [lib_path,]) |
766 |
env['ENV']['LD_LIBRARY_PATH']+=":"+lib_path |
767 |
except KeyError: |
768 |
pass |
769 |
try: |
770 |
mpi_libs = env['mpi_libs'] |
771 |
except KeyError: |
772 |
mpi_libs = [] |
773 |
|
774 |
try: |
775 |
mpi_run = env['mpi_run'] |
776 |
except KeyError: |
777 |
mpi_run = '' |
778 |
|
779 |
try: |
780 |
mpich_ignore_cxx_seek=env['MPICH_IGNORE_CXX_SEEK'] |
781 |
env.Append(CPPDEFINES = [ mpich_ignore_cxx_seek ] ) |
782 |
except KeyError: |
783 |
pass |
784 |
else: |
785 |
mpi_libs=[] |
786 |
mpi_run = mpi_run_default |
787 |
# =========== zip files =========================================== |
788 |
try: |
789 |
includes = env['papi_path'] |
790 |
env.Append(CPPPATH = [includes,]) |
791 |
except KeyError: |
792 |
pass |
793 |
try: |
794 |
lib_path = env['papi_lib_path'] |
795 |
env.Append(LIBPATH = [lib_path,]) |
796 |
except KeyError: |
797 |
pass |
798 |
try: |
799 |
papi_libs = env['papi_libs'] |
800 |
except KeyError: |
801 |
papi_libs = None |
802 |
try: |
803 |
papi_instrument_solver = env['papi_instrument_solver'] |
804 |
except KeyError: |
805 |
papi_instrument_solver = None |
806 |
|
807 |
|
808 |
# ============= and some helpers ===================================== |
809 |
try: |
810 |
doxygen_path = env['doxygen_path'] |
811 |
except KeyError: |
812 |
doxygen_path = None |
813 |
try: |
814 |
epydoc_path = env['epydoc_path'] |
815 |
except KeyError: |
816 |
epydoc_path = None |
817 |
try: |
818 |
src_zipfile = env.File(env['src_zipfile']) |
819 |
except KeyError: |
820 |
src_zipfile = None |
821 |
try: |
822 |
test_zipfile = env.File(env['test_zipfile']) |
823 |
except KeyError: |
824 |
test_zipfile = None |
825 |
try: |
826 |
examples_zipfile = env.File(env['examples_zipfile']) |
827 |
except KeyError: |
828 |
examples_zipfile = None |
829 |
|
830 |
try: |
831 |
src_tarfile = env.File(env['src_tarfile']) |
832 |
except KeyError: |
833 |
src_tarfile = None |
834 |
try: |
835 |
test_tarfile = env.File(env['test_tarfile']) |
836 |
except KeyError: |
837 |
test_tarfile = None |
838 |
try: |
839 |
examples_tarfile = env.File(env['examples_tarfile']) |
840 |
except KeyError: |
841 |
examples_tarfile = None |
842 |
|
843 |
try: |
844 |
guide_pdf = env.File(env['guide_pdf']) |
845 |
except KeyError: |
846 |
guide_pdf = None |
847 |
|
848 |
try: |
849 |
guide_html_index = env.File('index.htm',env['guide_html']) |
850 |
except KeyError: |
851 |
guide_html_index = None |
852 |
|
853 |
try: |
854 |
api_epydoc = env.Dir(env['api_epydoc']) |
855 |
except KeyError: |
856 |
api_epydoc = None |
857 |
|
858 |
try: |
859 |
api_doxygen = env.Dir(env['api_doxygen']) |
860 |
except KeyError: |
861 |
api_doxygen = None |
862 |
|
863 |
try: |
864 |
svn_pipe = os.popen("svnversion -n .") |
865 |
global_revision = svn_pipe.readlines() |
866 |
svn_pipe.close() |
867 |
global_revision = re.sub(":.*", "", global_revision[0]) |
868 |
global_revision = re.sub("[^0-9]", "", global_revision) |
869 |
except: |
870 |
global_revision="-1" |
871 |
print "Warning: unable to recover global revsion number." |
872 |
if global_revision == "": global_revision="0" |
873 |
print "Revision number is %s."%global_revision |
874 |
env.Append(CPPDEFINES = "SVN_VERSION="+global_revision) |
875 |
|
876 |
# Python install - esys __init__.py |
877 |
init_target = env.Command(pyinstall+'/__init__.py', None, Touch('$TARGET')) |
878 |
|
879 |
# FIXME: exinstall and friends related to examples are not working. |
880 |
build_target = env.Alias('build',[libinstall,incinstall,pyinstall,init_target]) |
881 |
|
882 |
env.Default(build_target) |
883 |
|
884 |
# Zipgets |
885 |
env.Alias('release_src',[ src_zipfile, src_tarfile ]) |
886 |
env.Alias('release_tests',[ test_zipfile, test_tarfile]) |
887 |
env.Alias('release_examples',[ examples_zipfile, examples_tarfile]) |
888 |
env.Alias('examples_zipfile',examples_zipfile) |
889 |
env.Alias('examples_tarfile',examples_tarfile) |
890 |
env.Alias('api_epydoc',api_epydoc) |
891 |
env.Alias('api_doxygen',api_doxygen) |
892 |
env.Alias('guide_html_index',guide_html_index) |
893 |
env.Alias('guide_pdf', guide_pdf) |
894 |
env.Alias('docs',[ 'release_examples', 'guide_pdf', api_epydoc, api_doxygen, guide_html_index]) |
895 |
env.Alias('release', ['release_src', 'release_tests', 'docs']) |
896 |
|
897 |
env.Alias('build_tests',build_target) # target to build all C++ tests |
898 |
env.Alias('build_py_tests',build_target) # target to build all python tests |
899 |
env.Alias('build_all_tests', [ 'build_tests', 'build_py_tests' ] ) # target to build all python tests |
900 |
env.Alias('run_tests', 'build_tests') # target to run all C++ test |
901 |
env.Alias('py_tests', 'build_py_tests') # taget to run all released python tests |
902 |
env.Alias('all_tests', ['run_tests', 'py_tests']) # target to run all C++ and released python tests |
903 |
|
904 |
|
905 |
# Allow sconscripts to see the env |
906 |
Export(["IS_WINDOWS_PLATFORM", "env", "incinstall", "libinstall", "pyinstall", "dodebug", "mkl_libs", "scsl_libs", "umf_libs", "blas_libs", "netCDF_libs", "useNetCDF", "mpi_run", |
907 |
"boost_lib", "python_lib", "doxygen_path", "epydoc_path", "papi_libs", |
908 |
"sys_libs", "test_zipfile", "src_zipfile", "test_tarfile", "src_tarfile", "examples_tarfile", "examples_zipfile", "trilinos_libs", "mpi_libs", "papi_instrument_solver", |
909 |
"guide_pdf", "guide_html_index", "api_epydoc", "api_doxygen", "useMPI" ]) |
910 |
|
911 |
# End initialisation section |
912 |
# Begin configuration section |
913 |
# adds this file and the scons option directore to the source tar |
914 |
release_srcfiles=[env.File('SConstruct'),env.Dir('lib'),env.Dir('include'),]+[ env.File(x) for x in glob.glob('scons/*.py') ] |
915 |
release_testfiles=[env.File('README_TESTS'),] |
916 |
env.Zip(src_zipfile, release_srcfiles) |
917 |
env.Zip(test_zipfile, release_testfiles) |
918 |
try: |
919 |
env.Tar(src_tarfile, release_srcfiles) |
920 |
env.Tar(test_tarfile, release_testfiles) |
921 |
except AttributeError: |
922 |
pass |
923 |
# Insert new components to be build here |
924 |
# FIXME: might be nice to replace this verbosity with a list of targets and some |
925 |
# FIXME: nifty python to create the lengthy but very similar env.Sconscript lines |
926 |
# Third Party libraries |
927 |
env.SConscript(dirs = ['tools/CppUnitTest/src'], build_dir='build/$PLATFORM/tools/CppUnitTest', duplicate=0) |
928 |
# C/C++ Libraries |
929 |
env.SConscript(dirs = ['paso/src'], build_dir='build/$PLATFORM/paso', duplicate=0) |
930 |
# bruce is removed for now as it doesn't really do anything |
931 |
# env.SConscript(dirs = ['bruce/src'], build_dir='build/$PLATFORM/bruce', duplicate=0) |
932 |
env.SConscript(dirs = ['escript/src'], build_dir='build/$PLATFORM/escript', duplicate=0) |
933 |
env.SConscript(dirs = ['esysUtils/src'], build_dir='build/$PLATFORM/esysUtils', duplicate=0) |
934 |
env.SConscript(dirs = ['finley/src'], build_dir='build/$PLATFORM/finley', duplicate=0) |
935 |
env.SConscript(dirs = ['modellib/py_src'], build_dir='build/$PLATFORM/modellib', duplicate=0) |
936 |
env.SConscript(dirs = ['doc'], build_dir='build/$PLATFORM/doc', duplicate=0) |
937 |
env.SConscript(dirs = ['pyvisi/py_src'], build_dir='build/$PLATFORM/pyvisi', duplicate=0) |
938 |
env.SConscript(dirs = ['pycad/py_src'], build_dir='build/$PLATFORM/pycad', duplicate=0) |
939 |
env.SConscript(dirs = ['pythonMPI/src'], build_dir='build/$PLATFORM/pythonMPI', duplicate=0) |
940 |
#env.SConscript(dirs = ['../test'], build_dir='../test/build', duplicate=0) |
941 |
|
942 |
|
943 |
syslib_install_target = env.installDirectory(sys_libinstall,libinstall) |
944 |
syspy_install_target = env.installDirectory(sys_pyinstall,pyinstall,recursive=True) |
945 |
|
946 |
install_target = env.Alias("install", env.Flatten([syslib_install_target, syspy_install_target]) ) |