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" |
tools_prefix="/usr" |
31 |
# |
# |
32 |
# get the installation prefix |
# get the installation prefix |
33 |
# |
# |
34 |
prefix = ARGUMENTS.get('prefix', '/usr') |
prefix = ARGUMENTS.get('prefix', sys.prefix ) |
35 |
|
|
36 |
# We may also need to know where python's site-packages subdirectory lives |
# 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]) |
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 |
# 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"): |
if os.path.isdir( prefix+"/lib64/"+python_version+"/site-packages"): |
40 |
sys_dir_packages = prefix+"/lib64/"+python_version+"/site-packages/esys" |
sys_dir_packages = prefix+"/lib64/"+python_version+"/site-packages/esys" |
51 |
dir_examples = os.path.join(source_root,"examples") |
dir_examples = os.path.join(source_root,"examples") |
52 |
dir_libraries = os.path.join(source_root,"lib") |
dir_libraries = os.path.join(source_root,"lib") |
53 |
|
|
54 |
|
print "Source root is : ",source_root |
55 |
print " Default packages local installation: ", dir_packages |
print " Default packages local installation: ", dir_packages |
56 |
print " Default library local installation ", dir_libraries |
print " Default library local installation ", dir_libraries |
57 |
print " Default example local installation: ", dir_examples |
print " Default example local installation: ", dir_examples |
78 |
|
|
79 |
if not options_file : |
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]) |
|
hostname="" |
|
|
for s in socket.gethostname().split('.')[0]: |
|
|
if s in ascii_letters+digits: |
|
|
hostname+=s |
|
|
else: |
|
|
hostname+="_" |
|
82 |
tmp = os.path.join("scons",hostname+"_options.py") |
tmp = os.path.join("scons",hostname+"_options.py") |
83 |
|
|
84 |
if os.path.isfile(tmp) : |
if os.path.isfile(tmp) : |
138 |
boost_path_default=os.path.join(tools_prefix,'include') |
boost_path_default=os.path.join(tools_prefix,'include') |
139 |
boost_lib_path_default=os.path.join(tools_prefix,'lib') |
boost_lib_path_default=os.path.join(tools_prefix,'lib') |
140 |
boost_lib_default=['boost_python'] |
boost_lib_default=['boost_python'] |
141 |
|
|
142 |
#========================================================================== |
#========================================================================== |
143 |
# |
# |
144 |
# check if netCDF is installed on the system: |
# check if netCDF is installed on the system: |
145 |
# |
# |
146 |
netCDF_path_default=os.path.join(tools_prefix,'include','netcdf-3') |
netCDF_path_default=os.path.join(tools_prefix,'include','netcdf-3') |
147 |
netCDF_lib_path_default=os.path.join(tools_prefix,'lib','netcdf-3') |
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): |
if os.path.isdir(netCDF_path_default) and os.path.isdir(netCDF_lib_path_default): |
150 |
useNetCDF_default='yes' |
useNetCDF_default='yes' |
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: |
# compile: |
179 |
# |
# |
180 |
cc_flags_default='-O3 -std=c99 -ffast-math -fpic -Wno-unknown-pragmas -ansi -pedantic-errors' |
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 -pedantic-errors' |
cc_flags_debug_default='-g -O0 -ffast-math -std=c99 -fpic -Wno-unknown-pragmas -ansi' |
182 |
cxx_flags_default='--no-warn -ansi' |
cxx_flags_default='--no-warn -ansi' |
183 |
cxx_flags_debug_default='--no-warn -ansi -DDOASSERT' |
cxx_flags_debug_default='--no-warn -ansi -DDOASSERT' |
184 |
|
|
185 |
#============================================================================================== |
#============================================================================================== |
186 |
# Default options and options help text |
# Default options and options help text |
187 |
# 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. |
208 |
('api_doxygen', 'name of the doxygen api docs directory',prefix+"/release/doc/doxygen"), |
('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?', 'no'), |
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), |
('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)', cc_flags_default), |
('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), |
('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), |
('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), |
('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), |
('ar_flags', 'Static library archiver flags to use', None), |
221 |
('sys_libs', 'System libraries to link with', None), |
('sys_libs', 'System libraries to link with', None), |
222 |
('tar_flags','flags for zip files','-c -z'), |
('tar_flags','flags for zip files','-c -z'), |
238 |
PathOption('amd_path', 'Path to AMD includes', amd_path_default), |
PathOption('amd_path', 'Path to AMD includes', amd_path_default), |
239 |
PathOption('amd_lib_path', 'Path to AMD libs', amd_lib_path_default), |
PathOption('amd_lib_path', 'Path to AMD libs', amd_lib_path_default), |
240 |
('amd_libs', 'AMD libraries to link with', amd_libs_default), |
('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 |
# BLAS |
250 |
PathOption('blas_path', 'Path to BLAS includes', None), |
PathOption('blas_path', 'Path to BLAS includes', None), |
251 |
PathOption('blas_lib_path', 'Path to BLAS libs', None), |
PathOption('blas_lib_path', 'Path to BLAS libs', None), |
273 |
PathOption('papi_path', 'Path to PAPI includes', None), |
PathOption('papi_path', 'Path to PAPI includes', None), |
274 |
PathOption('papi_lib_path', 'Path to PAPI libs', None), |
PathOption('papi_lib_path', 'Path to PAPI libs', None), |
275 |
('papi_libs', 'PAPI libraries to link with', None), |
('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 |
# MPI |
278 |
BoolOption('useMPI', 'Compile parallel version using MPI', 'no'), |
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 |
# |
# |
295 |
|
|
296 |
if IS_WINDOWS_PLATFORM: |
if IS_WINDOWS_PLATFORM: |
297 |
env = Environment(tools = ['default', 'msvc'], options = opts) |
env = Environment(tools = ['default', 'msvc'], options = opts) |
298 |
|
#env = Environment(tools = ['default', 'intelc'], options = opts) |
299 |
else: |
else: |
300 |
if os.uname()[4]=='ia64': |
if socket.gethostname().split('.')[0] == 'service0': |
301 |
|
env = Environment(tools = ['default', 'intelc'], options = opts) |
302 |
|
elif os.uname()[4]=='ia64': |
303 |
env = Environment(tools = ['default', 'intelc'], options = opts) |
env = Environment(tools = ['default', 'intelc'], options = opts) |
304 |
if env['CXX'] == 'icpc': |
if env['CXX'] == 'icpc': |
305 |
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 |
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 |
307 |
env = Environment(tools = ['default'], options = opts) |
env = Environment(tools = ['default'], options = opts) |
308 |
Help(opts.GenerateHelpText(env)) |
Help(opts.GenerateHelpText(env)) |
309 |
|
|
310 |
|
if env['bounds_check']: |
311 |
|
env.Append(CPPDEFINES = [ 'BOUNDS_CHECK' ]) |
312 |
|
env.Append(CXXDEFINES = [ 'BOUNDS_CHECK' ]) |
313 |
|
bounds_check = env['bounds_check'] |
314 |
|
else: |
315 |
|
bounds_check = 0 |
316 |
|
|
317 |
#================================================================================================= |
#================================================================================================= |
318 |
# |
# |
319 |
# Initialise Scons Build Environment |
# Initialise Scons Build Environment |
330 |
omp_num_threads = os.environ['OMP_NUM_THREADS'] |
omp_num_threads = os.environ['OMP_NUM_THREADS'] |
331 |
except KeyError: |
except KeyError: |
332 |
omp_num_threads = 1 |
omp_num_threads = 1 |
333 |
|
env['ENV']['OMP_NUM_THREADS'] = omp_num_threads |
334 |
|
|
335 |
|
try: |
336 |
|
path = os.environ['PATH'] |
337 |
|
env['ENV']['PATH'] = path |
338 |
|
except KeyError: |
339 |
|
omp_num_threads = 1 |
340 |
|
|
341 |
env['ENV']['OMP_NUM_THREADS'] = omp_num_threads |
env['ENV']['OMP_NUM_THREADS'] = omp_num_threads |
342 |
|
|
343 |
|
|
344 |
|
# Copy some variables from the system environment to the build environment |
345 |
try: |
try: |
346 |
env['ENV']['DISPLAY'] = os.environ['DISPLAY'] |
env['ENV']['DISPLAY'] = os.environ['DISPLAY'] |
347 |
env['ENV']['XAUTHORITY'] = os.environ['XAUTHORITY'] |
env['ENV']['XAUTHORITY'] = os.environ['XAUTHORITY'] |
348 |
|
home_temp = os.environ['HOME'] # MPICH2's mpd needs $HOME to find $HOME/.mpd.conf |
349 |
|
env['ENV']['HOME'] = home_temp |
350 |
except KeyError: |
except KeyError: |
351 |
pass |
pass |
352 |
|
|
388 |
env.PrependENVPath('LD_LIBRARY_PATH', libinstall) |
env.PrependENVPath('LD_LIBRARY_PATH', libinstall) |
389 |
if IS_WINDOWS_PLATFORM : |
if IS_WINDOWS_PLATFORM : |
390 |
env.PrependENVPath('PATH', libinstall) |
env.PrependENVPath('PATH', libinstall) |
391 |
|
env.PrependENVPath('PATH', env['boost_lib_path']) |
392 |
except KeyError: |
except KeyError: |
393 |
libinstall = None |
libinstall = None |
394 |
try: |
try: |
395 |
pyinstall = env['pyinstall'] # 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 |
396 |
except KeyError: |
except KeyError: |
397 |
pyinstall = None |
pyinstall = None |
398 |
|
|
399 |
|
try: |
400 |
|
cc_defines = env['cc_defines'] |
401 |
|
env.Append(CPPDEFINES = cc_defines) |
402 |
|
except KeyError: |
403 |
|
pass |
404 |
|
try: |
405 |
|
flags = env['ar_flags'] |
406 |
|
env.Append(ARFLAGS = flags) |
407 |
|
except KeyError: |
408 |
|
ar_flags = None |
409 |
|
try: |
410 |
|
sys_libs = env['sys_libs'] |
411 |
|
except KeyError: |
412 |
|
sys_libs = [] |
413 |
|
|
414 |
|
try: |
415 |
|
tar_flags = env['tar_flags'] |
416 |
|
env.Replace(TARFLAGS = tar_flags) |
417 |
|
except KeyError: |
418 |
|
pass |
419 |
|
|
420 |
try: |
try: |
421 |
exinstall = env['exinstall'] |
exinstall = env['exinstall'] |
422 |
except KeyError: |
except KeyError: |
433 |
sys_exinstall = env['sys_exinstall'] |
sys_exinstall = env['sys_exinstall'] |
434 |
except KeyError: |
except KeyError: |
435 |
sys_exinstall = None |
sys_exinstall = None |
436 |
|
|
437 |
|
# ====================== debugging =================================== |
438 |
try: |
try: |
439 |
dodebug = env['dodebug'] |
dodebug = env['dodebug'] |
440 |
except KeyError: |
except KeyError: |
441 |
dodebug = None |
dodebug = None |
442 |
|
|
443 |
|
# === switch on omp =================================================== |
444 |
try: |
try: |
445 |
useMPI = env['useMPI'] |
omp_flags = env['omp_flags'] |
446 |
except KeyError: |
except KeyError: |
447 |
useMPI = None |
omp_flags = '' |
448 |
|
|
449 |
try: |
try: |
450 |
cc_defines = env['cc_defines'] |
omp_flags_debug = env['omp_flags_debug'] |
|
env.Append(CPPDEFINES = cc_defines) |
|
451 |
except KeyError: |
except KeyError: |
452 |
pass |
omp_flags_debug = '' |
453 |
|
|
454 |
|
# ========= use mpi? ===================================================== |
455 |
|
try: |
456 |
|
useMPI = env['useMPI'] |
457 |
|
except KeyError: |
458 |
|
useMPI = None |
459 |
|
# ========= set compiler flags =========================================== |
460 |
|
|
461 |
if dodebug: |
if dodebug: |
|
if useMPI: |
|
462 |
try: |
try: |
463 |
flags = env['cc_flags_debug_MPI'] |
flags = env['cc_flags_debug'] + ' ' + omp_flags_debug |
|
env.Append(CCFLAGS = flags) |
|
|
except KeyError: |
|
|
pass |
|
|
else: |
|
|
try: |
|
|
flags = env['cc_flags_debug'] |
|
464 |
env.Append(CCFLAGS = flags) |
env.Append(CCFLAGS = flags) |
465 |
except KeyError: |
except KeyError: |
466 |
pass |
pass |
467 |
else: |
else: |
|
if useMPI: |
|
|
try: |
|
|
flags = env['cc_flags_MPI'] |
|
|
env.Append(CCFLAGS = flags) |
|
|
except KeyError: |
|
|
pass |
|
|
else: |
|
468 |
try: |
try: |
469 |
flags = env['cc_flags'] |
flags = env['cc_flags'] + ' ' + omp_flags |
470 |
env.Append(CCFLAGS = flags) |
env.Append(CCFLAGS = flags) |
471 |
except KeyError: |
except KeyError: |
472 |
pass |
pass |
473 |
if dodebug: |
if dodebug: |
|
if useMPI: |
|
|
try: |
|
|
flags = env['cxx_flags_debug_MPI'] |
|
|
env.Append(CXXFLAGS = flags) |
|
|
except KeyError: |
|
|
pass |
|
|
else: |
|
474 |
try: |
try: |
475 |
flags = env['cxx_flags_debug'] |
flags = env['cxx_flags_debug'] |
476 |
env.Append(CXXFLAGS = flags) |
env.Append(CXXFLAGS = flags) |
477 |
except KeyError: |
except KeyError: |
478 |
pass |
pass |
479 |
else: |
else: |
|
if useMPI: |
|
|
try: |
|
|
flags = env['cxx_flags_MPI'] |
|
|
env.Append(CXXFLAGS = flags) |
|
|
except KeyError: |
|
|
pass |
|
|
else: |
|
480 |
try: |
try: |
481 |
flags = env['cxx_flags'] |
flags = env['cxx_flags'] |
482 |
env.Append(CXXFLAGS = flags) |
env.Append(CXXFLAGS = flags) |
483 |
except KeyError: |
except KeyError: |
484 |
pass |
pass |
485 |
try: |
try: |
486 |
flags = env['ar_flags'] |
if env['CC'] == 'gcc': env.Append(CCFLAGS = "-pedantic-errors -Wno-long-long") |
487 |
env.Append(ARFLAGS = flags) |
except: |
488 |
except KeyError: |
pass |
|
ar_flags = None |
|
|
try: |
|
|
sys_libs = env['sys_libs'] |
|
|
except KeyError: |
|
|
sys_libs = [] |
|
489 |
|
|
490 |
try: |
# ============= Remember what options were used in the compile ===================================== |
491 |
tar_flags = env['tar_flags'] |
if not IS_WINDOWS_PLATFORM: |
492 |
env.Replace(TARFLAGS = tar_flags) |
env.Execute("/bin/rm -f " + libinstall + "/Compiled.with.*") |
493 |
except KeyError: |
if dodebug: env.Execute("touch " + libinstall + "/Compiled.with.debug") |
494 |
pass |
if useMPI: env.Execute("touch " + libinstall + "/Compiled.with.mpi") |
495 |
|
if omp_flags != '': env.Execute("touch " + libinstall + "/Compiled.with.OpenMP") |
496 |
|
if bounds_check: env.Execute("touch " + libinstall + "/Compiled.with.bounds_check") |
497 |
|
|
498 |
try: |
# ============= set mkl (but only of no MPI) ===================================== |
499 |
includes = env['mkl_path'] |
if not useMPI: |
500 |
env.Append(CPPPATH = [includes,]) |
try: |
501 |
except KeyError: |
includes = env['mkl_path'] |
502 |
pass |
env.Append(CPPPATH = [includes,]) |
503 |
|
except KeyError: |
504 |
|
pass |
505 |
|
|
506 |
try: |
try: |
507 |
lib_path = env['mkl_lib_path'] |
lib_path = env['mkl_lib_path'] |
508 |
env.Append(LIBPATH = [lib_path,]) |
env.Append(LIBPATH = [lib_path,]) |
509 |
except KeyError: |
env['ENV']['LD_LIBRARY_PATH']+=":"+lib_path |
510 |
pass |
except KeyError: |
511 |
|
pass |
512 |
|
|
|
if useMPI: |
|
|
mkl_libs = [] |
|
|
else: |
|
513 |
try: |
try: |
514 |
mkl_libs = env['mkl_libs'] |
mkl_libs = env['mkl_libs'] |
515 |
except KeyError: |
except KeyError: |
516 |
mkl_libs = [] |
mkl_libs = [] |
517 |
|
else: |
518 |
|
mkl_libs = [] |
519 |
|
|
520 |
try: |
# ============= set scsl (but only of no MPI) ===================================== |
521 |
includes = env['scsl_path'] |
if not useMPI: |
522 |
env.Append(CPPPATH = [includes,]) |
try: |
523 |
except KeyError: |
includes = env['scsl_path'] |
524 |
pass |
env.Append(CPPPATH = [includes,]) |
525 |
|
except KeyError: |
526 |
|
pass |
527 |
|
|
528 |
try: |
try: |
529 |
lib_path = env['scsl_lib_path'] |
lib_path = env['scsl_lib_path'] |
530 |
env.Append(LIBPATH = [lib_path,]) |
env.Append(LIBPATH = [lib_path,]) |
531 |
except KeyError: |
env['ENV']['LD_LIBRARY_PATH']+=":"+lib_path |
532 |
pass |
except KeyError: |
533 |
|
pass |
534 |
|
|
535 |
|
try: |
536 |
|
scsl_libs = env['scsl_libs'] |
537 |
|
except KeyError: |
538 |
|
scsl_libs = [ ] |
539 |
|
|
540 |
if useMPI: |
else: |
541 |
try: |
scsl_libs = [] |
|
scsl_libs = env['scsl_libs_MPI'] |
|
|
except KeyError: |
|
|
scsl_libs = [] |
|
|
else: |
|
|
try: |
|
|
scsl_libs = env['scsl_libs'] |
|
|
except KeyError: |
|
|
scsl_libs = [] |
|
542 |
|
|
543 |
try: |
# ============= set TRILINOS (but only with MPI) ===================================== |
544 |
includes = env['umf_path'] |
if useMPI: |
545 |
env.Append(CPPPATH = [includes,]) |
try: |
546 |
except KeyError: |
includes = env['trilinos_path'] |
547 |
pass |
env.Append(CPPPATH = [includes,]) |
548 |
|
except KeyError: |
549 |
|
pass |
550 |
|
|
551 |
try: |
try: |
552 |
lib_path = env['umf_lib_path'] |
lib_path = env['trilinos_lib_path'] |
553 |
env.Append(LIBPATH = [lib_path,]) |
env.Append(LIBPATH = [lib_path,]) |
554 |
except KeyError: |
except KeyError: |
555 |
pass |
pass |
556 |
|
|
557 |
if useMPI: |
try: |
558 |
umf_libs = [] |
trilinos_libs = env['trilinos_libs'] |
559 |
|
except KeyError: |
560 |
|
trilinos_libs = [] |
561 |
else: |
else: |
562 |
|
trilinos_libs = [] |
563 |
|
|
564 |
|
|
565 |
|
# ============= set umfpack (but only without MPI) ===================================== |
566 |
|
umf_libs=[ ] |
567 |
|
if not useMPI: |
568 |
|
try: |
569 |
|
includes = env['umf_path'] |
570 |
|
env.Append(CPPPATH = [includes,]) |
571 |
|
except KeyError: |
572 |
|
pass |
573 |
|
|
574 |
|
try: |
575 |
|
lib_path = env['umf_lib_path'] |
576 |
|
env.Append(LIBPATH = [lib_path,]) |
577 |
|
except KeyError: |
578 |
|
pass |
579 |
|
|
580 |
try: |
try: |
581 |
umf_libs = env['umf_libs'] |
umf_libs = env['umf_libs'] |
582 |
|
umf_libs+=umf_libs |
583 |
except KeyError: |
except KeyError: |
584 |
umf_libs = [] |
pass |
585 |
|
|
586 |
try: |
try: |
587 |
includes = env['ufc_path'] |
includes = env['ufc_path'] |
588 |
env.Append(CPPPATH = [includes,]) |
env.Append(CPPPATH = [includes,]) |
589 |
except KeyError: |
except KeyError: |
590 |
pass |
pass |
591 |
|
|
592 |
try: |
try: |
593 |
includes = env['amd_path'] |
includes = env['amd_path'] |
594 |
env.Append(CPPPATH = [includes,]) |
env.Append(CPPPATH = [includes,]) |
595 |
except KeyError: |
except KeyError: |
596 |
pass |
pass |
597 |
|
|
598 |
try: |
try: |
599 |
lib_path = env['amd_lib_path'] |
lib_path = env['amd_lib_path'] |
600 |
env.Append(LIBPATH = [lib_path,]) |
env.Append(LIBPATH = [lib_path,]) |
601 |
except KeyError: |
except KeyError: |
602 |
pass |
pass |
603 |
|
|
|
if useMPI: |
|
|
amd_libs = [] |
|
|
else: |
|
604 |
try: |
try: |
605 |
amd_libs = env['amd_libs'] |
amd_libs = env['amd_libs'] |
606 |
|
umf_libs+=amd_libs |
607 |
|
except KeyError: |
608 |
|
pass |
609 |
|
|
610 |
|
# ============= set TRILINOS (but only with MPI) ===================================== |
611 |
|
if useMPI: |
612 |
|
try: |
613 |
|
includes = env['trilinos_path'] |
614 |
|
env.Append(CPPPATH = [includes,]) |
615 |
except KeyError: |
except KeyError: |
616 |
amd_libs = [] |
pass |
617 |
|
|
618 |
|
try: |
619 |
|
lib_path = env['trilinos_lib_path'] |
620 |
|
env.Append(LIBPATH = [lib_path,]) |
621 |
|
except KeyError: |
622 |
|
pass |
623 |
|
|
624 |
|
try: |
625 |
|
trilinos_libs = env['trilinos_libs'] |
626 |
|
except KeyError: |
627 |
|
trilinos_libs = [] |
628 |
|
else: |
629 |
|
trilinos_libs = [] |
630 |
|
|
631 |
|
# ============= set blas ===================================== |
632 |
try: |
try: |
633 |
includes = env['blas_path'] |
includes = env['blas_path'] |
634 |
env.Append(CPPPATH = [includes,]) |
env.Append(CPPPATH = [includes,]) |
644 |
try: |
try: |
645 |
blas_libs = env['blas_libs'] |
blas_libs = env['blas_libs'] |
646 |
except KeyError: |
except KeyError: |
647 |
blas_libs = [] |
blas_libs = [ ] |
648 |
|
|
649 |
|
# ========== netcdf ==================================== |
650 |
try: |
try: |
651 |
useNetCDF = env['useNetCDF'] |
useNetCDF = env['useNetCDF'] |
652 |
except KeyError: |
except KeyError: |
653 |
useNetCDF = 'yes' |
useNetCDF = 'yes' |
654 |
pass |
pass |
655 |
|
|
656 |
if useNetCDF == 'yes': |
if useNetCDF == 'yes': |
657 |
try: |
try: |
658 |
netCDF_libs = env['netCDF_libs'] |
netCDF_libs = env['netCDF_libs'] |
670 |
try: |
try: |
671 |
lib_path = env['netCDF_lib_path'] |
lib_path = env['netCDF_lib_path'] |
672 |
env.Append(LIBPATH = [ lib_path, ]) |
env.Append(LIBPATH = [ lib_path, ]) |
673 |
|
env['ENV']['LD_LIBRARY_PATH']+=":"+lib_path |
674 |
if IS_WINDOWS_PLATFORM : |
if IS_WINDOWS_PLATFORM : |
675 |
env.PrependENVPath('PATH', lib_path) |
env.PrependENVPath('PATH', lib_path) |
676 |
except KeyError: |
except KeyError: |
679 |
print "Warning: Installation is not configured with netCDF. Some I/O function may not be available." |
print "Warning: Installation is not configured with netCDF. Some I/O function may not be available." |
680 |
netCDF_libs=[ ] |
netCDF_libs=[ ] |
681 |
|
|
682 |
|
# ====================== boost ====================================== |
683 |
try: |
try: |
684 |
includes = env['boost_path'] |
includes = env['boost_path'] |
685 |
env.Append(CPPPATH = [includes,]) |
env.Append(CPPPATH = [includes,]) |
688 |
try: |
try: |
689 |
lib_path = env['boost_lib_path'] |
lib_path = env['boost_lib_path'] |
690 |
env.Append(LIBPATH = [lib_path,]) |
env.Append(LIBPATH = [lib_path,]) |
691 |
|
env['ENV']['LD_LIBRARY_PATH']+=":"+lib_path |
692 |
if IS_WINDOWS_PLATFORM : |
if IS_WINDOWS_PLATFORM : |
693 |
env.PrependENVPath('PATH', lib_path) |
env.PrependENVPath('PATH', lib_path) |
694 |
except KeyError: |
except KeyError: |
697 |
boost_lib = env['boost_lib'] |
boost_lib = env['boost_lib'] |
698 |
except KeyError: |
except KeyError: |
699 |
boost_lib = None |
boost_lib = None |
700 |
|
# ====================== python ====================================== |
701 |
try: |
try: |
702 |
includes = env['python_path'] |
includes = env['python_path'] |
703 |
env.Append(CPPPATH = [includes,]) |
env.Append(CPPPATH = [includes,]) |
705 |
pass |
pass |
706 |
try: |
try: |
707 |
lib_path = env['python_lib_path'] |
lib_path = env['python_lib_path'] |
708 |
|
env['ENV']['LD_LIBRARY_PATH']+=":"+lib_path |
709 |
env.Append(LIBPATH = [lib_path,]) |
env.Append(LIBPATH = [lib_path,]) |
710 |
except KeyError: |
except KeyError: |
711 |
pass |
pass |
713 |
python_lib = env['python_lib'] |
python_lib = env['python_lib'] |
714 |
except KeyError: |
except KeyError: |
715 |
python_lib = None |
python_lib = None |
716 |
|
# =============== documentation ======================================= |
717 |
try: |
try: |
718 |
doxygen_path = env['doxygen_path'] |
doxygen_path = env['doxygen_path'] |
719 |
except KeyError: |
except KeyError: |
722 |
epydoc_path = env['epydoc_path'] |
epydoc_path = env['epydoc_path'] |
723 |
except KeyError: |
except KeyError: |
724 |
epydoc_path = None |
epydoc_path = None |
725 |
|
# =============== ParMETIS ======================================= |
726 |
|
try: |
727 |
|
parmetis_path = env['parmetis_path'] |
728 |
|
parmetis_lib_path = env['parmetis_lib_path'] |
729 |
|
parmetis_lib = env['parmetis_lib'] |
730 |
|
except KeyError: |
731 |
|
parmetis_path = '' |
732 |
|
parmetis_lib_path = '' |
733 |
|
parmetis_lib = '' |
734 |
|
|
735 |
|
if useMPI and os.path.isdir(parmetis_lib_path): |
736 |
|
env.Append(CPPDEFINES = [ 'PARMETIS' ]) |
737 |
|
env.Append(CXXDEFINES = [ 'PARMETIS' ]) |
738 |
|
env.Append(CPPPATH = [parmetis_path]) |
739 |
|
env.Append(LIBPATH = [parmetis_lib_path]) |
740 |
|
env.Append(LIBS = parmetis_lib) |
741 |
|
# =============== PAPI ======================================= |
742 |
try: |
try: |
743 |
includes = env['papi_path'] |
includes = env['papi_path'] |
744 |
env.Append(CPPPATH = [includes,]) |
env.Append(CPPPATH = [includes,]) |
753 |
papi_libs = env['papi_libs'] |
papi_libs = env['papi_libs'] |
754 |
except KeyError: |
except KeyError: |
755 |
papi_libs = None |
papi_libs = None |
756 |
|
# ============= set mpi ===================================== |
757 |
|
if useMPI: |
758 |
|
env.Append(CPPDEFINES=['PASO_MPI',]) |
759 |
|
try: |
760 |
|
includes = env['mpi_path'] |
761 |
|
env.Append(CPPPATH = [includes,]) |
762 |
|
except KeyError: |
763 |
|
pass |
764 |
|
try: |
765 |
|
lib_path = env['mpi_lib_path'] |
766 |
|
env.Append(LIBPATH = [lib_path,]) |
767 |
|
env['ENV']['LD_LIBRARY_PATH']+=":"+lib_path |
768 |
|
except KeyError: |
769 |
|
pass |
770 |
|
try: |
771 |
|
mpi_libs = env['mpi_libs'] |
772 |
|
except KeyError: |
773 |
|
mpi_libs = [] |
774 |
|
|
775 |
|
try: |
776 |
|
mpi_run = env['mpi_run'] |
777 |
|
except KeyError: |
778 |
|
mpi_run = '' |
779 |
|
|
780 |
|
try: |
781 |
|
mpich_ignore_cxx_seek=env['MPICH_IGNORE_CXX_SEEK'] |
782 |
|
env.Append(CPPDEFINES = [ mpich_ignore_cxx_seek ] ) |
783 |
|
except KeyError: |
784 |
|
pass |
785 |
|
else: |
786 |
|
mpi_libs=[] |
787 |
|
mpi_run = mpi_run_default |
788 |
|
# =========== zip files =========================================== |
789 |
|
try: |
790 |
|
includes = env['papi_path'] |
791 |
|
env.Append(CPPPATH = [includes,]) |
792 |
|
except KeyError: |
793 |
|
pass |
794 |
|
try: |
795 |
|
lib_path = env['papi_lib_path'] |
796 |
|
env.Append(LIBPATH = [lib_path,]) |
797 |
|
except KeyError: |
798 |
|
pass |
799 |
|
try: |
800 |
|
papi_libs = env['papi_libs'] |
801 |
|
except KeyError: |
802 |
|
papi_libs = None |
803 |
|
try: |
804 |
|
papi_instrument_solver = env['papi_instrument_solver'] |
805 |
|
except KeyError: |
806 |
|
papi_instrument_solver = None |
807 |
|
|
808 |
|
|
809 |
|
# ============= and some helpers ===================================== |
810 |
|
try: |
811 |
|
doxygen_path = env['doxygen_path'] |
812 |
|
except KeyError: |
813 |
|
doxygen_path = None |
814 |
|
try: |
815 |
|
epydoc_path = env['epydoc_path'] |
816 |
|
except KeyError: |
817 |
|
epydoc_path = None |
818 |
try: |
try: |
819 |
src_zipfile = env.File(env['src_zipfile']) |
src_zipfile = env.File(env['src_zipfile']) |
820 |
except KeyError: |
except KeyError: |
862 |
api_doxygen = None |
api_doxygen = None |
863 |
|
|
864 |
try: |
try: |
865 |
svn_pipe = os.popen("svn info | grep '^Revision'") |
svn_pipe = os.popen("svnversion -n .") |
866 |
rev = svn_pipe.readlines() |
global_revision = svn_pipe.readlines() |
867 |
svn_pipe.close() |
svn_pipe.close() |
868 |
svn_version = re.sub("[^0-9]", "", rev[0]) |
global_revision = re.sub(":.*", "", global_revision[0]) |
869 |
|
global_revision = re.sub("[^0-9]", "", global_revision) |
870 |
except: |
except: |
871 |
svn_version = "0" |
global_revision="-1" |
872 |
env.Append(CPPDEFINES = "SVN_VERSION="+svn_version) |
print "Warning: unable to recover global revsion number." |
873 |
|
if global_revision == "": global_revision="0" |
874 |
|
print "Revision number is %s."%global_revision |
875 |
|
env.Append(CPPDEFINES = "SVN_VERSION="+global_revision) |
876 |
|
|
877 |
# Python install - esys __init__.py |
# Python install - esys __init__.py |
878 |
init_target = env.Command(pyinstall+'/__init__.py', None, Touch('$TARGET')) |
init_target = env.Command(pyinstall+'/__init__.py', None, Touch('$TARGET')) |
904 |
|
|
905 |
|
|
906 |
# Allow sconscripts to see the env |
# Allow sconscripts to see the env |
907 |
Export(["env", "incinstall", "libinstall", "pyinstall", "exinstall", "dodebug", |
Export(["IS_WINDOWS_PLATFORM", "env", "incinstall", "libinstall", "pyinstall", "dodebug", "mkl_libs", "scsl_libs", "umf_libs", "blas_libs", "netCDF_libs", "useNetCDF", "mpi_run", |
|
"mkl_libs", "scsl_libs", "umf_libs", "amd_libs", "blas_libs", |
|
|
"netCDF_libs", |
|
908 |
"boost_lib", "python_lib", "doxygen_path", "epydoc_path", "papi_libs", |
"boost_lib", "python_lib", "doxygen_path", "epydoc_path", "papi_libs", |
909 |
"sys_libs", "test_zipfile", "src_zipfile", "test_tarfile", |
"sys_libs", "test_zipfile", "src_zipfile", "test_tarfile", "src_tarfile", "examples_tarfile", "examples_zipfile", "trilinos_libs", "mpi_libs", "papi_instrument_solver", |
910 |
"src_tarfile", "examples_tarfile", "examples_zipfile", |
"guide_pdf", "guide_html_index", "api_epydoc", "api_doxygen", "useMPI" ]) |
|
"guide_pdf", "guide_html_index", "api_epydoc", "api_doxygen", "useMPI" |
|
|
]) |
|
911 |
|
|
912 |
# End initialisation section |
# End initialisation section |
913 |
# Begin configuration section |
# Begin configuration section |
914 |
# adds this file and the scons option directore to the source tar |
# adds this file and the scons option directore to the source tar |
915 |
release_srcfiles=[env.File('SConstruct'),]+[ env.File(x) for x in glob.glob('scons/*.py') ] |
release_srcfiles=[env.File('SConstruct'),env.Dir('lib'),env.Dir('include'),]+[ env.File(x) for x in glob.glob('scons/*.py') ] |
916 |
release_testfiles=[env.File('README_TESTS'),] |
release_testfiles=[env.File('README_TESTS'),] |
917 |
env.Zip(src_zipfile, release_srcfiles) |
env.Zip(src_zipfile, release_srcfiles) |
918 |
env.Zip(test_zipfile, release_testfiles) |
env.Zip(test_zipfile, release_testfiles) |
937 |
env.SConscript(dirs = ['doc'], build_dir='build/$PLATFORM/doc', duplicate=0) |
env.SConscript(dirs = ['doc'], build_dir='build/$PLATFORM/doc', duplicate=0) |
938 |
env.SConscript(dirs = ['pyvisi/py_src'], build_dir='build/$PLATFORM/pyvisi', duplicate=0) |
env.SConscript(dirs = ['pyvisi/py_src'], build_dir='build/$PLATFORM/pyvisi', duplicate=0) |
939 |
env.SConscript(dirs = ['pycad/py_src'], build_dir='build/$PLATFORM/pycad', duplicate=0) |
env.SConscript(dirs = ['pycad/py_src'], build_dir='build/$PLATFORM/pycad', duplicate=0) |
|
|
|
|
# added by Ben Cumming |
|
940 |
env.SConscript(dirs = ['pythonMPI/src'], build_dir='build/$PLATFORM/pythonMPI', duplicate=0) |
env.SConscript(dirs = ['pythonMPI/src'], build_dir='build/$PLATFORM/pythonMPI', duplicate=0) |
941 |
#env.SConscript(dirs = ['../test'], build_dir='../test/build', duplicate=0) |
#env.SConscript(dirs = ['../test'], build_dir='../test/build', duplicate=0) |
942 |
|
|