1 |
# Copyright 2006 by ACcESS MNRF |
|
2 |
|
######################################################## |
3 |
|
# |
4 |
|
# Copyright (c) 2003-2008 by University of Queensland |
5 |
|
# Earth Systems Science Computational Center (ESSCC) |
6 |
|
# http://www.uq.edu.au/esscc |
7 |
|
# |
8 |
|
# Primary Business: Queensland, Australia |
9 |
|
# Licensed under the Open Software License version 3.0 |
10 |
|
# http://www.opensource.org/licenses/osl-3.0.php |
11 |
# |
# |
12 |
# http://www.access.edu.au |
######################################################## |
13 |
# Primary Business: Queensland, Australia |
|
14 |
# Licensed under the Open Software License version 3.0 |
|
|
# http://www.opensource.org/licenses/osl-3.0.php |
|
|
|
|
|
# top-level Scons configuration file for all esys13 modules |
|
|
# Begin initialisation Section |
|
|
# all of this section just intialises default environments and helper |
|
|
# scripts. You shouldn't need to modify this section. |
|
15 |
EnsureSConsVersion(0,96,91) |
EnsureSConsVersion(0,96,91) |
16 |
EnsurePythonVersion(2,3) |
EnsurePythonVersion(2,3) |
17 |
|
|
18 |
|
import sys, os, re, socket |
19 |
|
|
|
#=============================================================== |
|
|
# import tools: |
|
|
import glob |
|
|
import sys, os, re |
|
20 |
# Add our extensions |
# Add our extensions |
21 |
if sys.path.count('scons')==0: sys.path.append('scons') |
if os.path.isdir('scons'): sys.path.append('scons') |
22 |
import scons_extensions |
import scons_extensions |
23 |
|
|
24 |
# We may also need to know where python's site-packages subdirectory lives |
# Use /usr/lib64 if available, else /usr/lib |
25 |
python_version = 'python%s.%s'%(sys.version_info[0],sys.version_info[1]) |
usr_lib = '/usr/lib' |
26 |
|
if os.path.isfile('/usr/lib64/libc.so'): usr_lib = '/usr/lib64' |
|
#=============================================================== |
|
|
|
|
|
tools_prefix="/usr" |
|
|
|
|
|
#============================================================================================== |
|
|
# |
|
|
# get the installation prefix |
|
|
# |
|
|
prefix = ARGUMENTS.get('prefix', sys.prefix ) |
|
|
|
|
|
# We may also need to know where python's site-packages subdirectory lives |
|
|
python_version = 'python%s.%s'%(sys.version_info[0],sys.version_info[1]) |
|
|
# Install as a standard python package in /usr/lib64 if available, else in /usr/lib |
|
|
if os.path.isdir( prefix+"/lib64/"+python_version+"/site-packages"): |
|
|
sys_dir_packages = prefix+"/lib64/"+python_version+"/site-packages/esys" |
|
|
sys_dir_libraries = prefix+"/lib64" |
|
|
else: |
|
|
sys_dir_packages = prefix+"/lib/"+python_version+"/site-packages/esys" |
|
|
sys_dir_libraries = prefix+"/lib" |
|
|
|
|
|
sys_dir_examples = prefix+"/share/doc/esys" |
|
27 |
|
|
28 |
source_root = Dir('#.').abspath |
# The string python2.4 or python2.5 |
29 |
|
python_version = 'python%s.%s' % (sys.version_info[0], sys.version_info[1]) |
|
dir_packages = os.path.join(source_root,"esys") |
|
|
dir_examples = os.path.join(source_root,"examples") |
|
|
dir_libraries = os.path.join(source_root,"lib") |
|
|
|
|
|
print "Source root is : ",source_root |
|
|
print " Default packages local installation: ", dir_packages |
|
|
print " Default library local installation ", dir_libraries |
|
|
print " Default example local installation: ", dir_examples |
|
|
print "Install prefix is: ", prefix |
|
|
print " Default packages system installation: ", sys_dir_packages |
|
|
print " Default library system installation ", sys_dir_libraries |
|
|
print " Default example system installation: ", sys_dir_examples |
|
|
|
|
|
#============================================================================================== |
|
|
|
|
|
# Default options and options help text |
|
|
# These are defaults and can be overridden using command line arguments or an options file. |
|
|
# if the options_file or ARGUMENTS do not exist then the ones listed as default here are used |
|
|
# DO NOT CHANGE THEM HERE |
|
|
# Where to install? |
|
|
#============================================================================================== |
|
|
# |
|
|
# get the options file if present: |
|
|
# |
|
|
options_file = ARGUMENTS.get('options_file','') |
|
|
|
|
|
if not os.path.isfile(options_file) : |
|
|
options_file = False |
|
|
|
|
|
if not options_file : |
|
|
import socket |
|
|
hostname = re.sub("[^0-9a-zA-Z]", "_", socket.gethostname().split('.')[0]) |
|
|
tmp = os.path.join("scons",hostname+"_options.py") |
|
|
|
|
|
if os.path.isfile(tmp) : |
|
|
options_file = tmp |
|
30 |
|
|
31 |
|
# MS Windows support, many thanks to PH |
32 |
IS_WINDOWS_PLATFORM = (os.name== "nt") |
IS_WINDOWS_PLATFORM = (os.name== "nt") |
33 |
|
|
34 |
# If you're not going to tell me then...... |
prefix = ARGUMENTS.get('prefix', Dir('#.').abspath) |
|
# FIXME: add one for the altix too. |
|
|
if not options_file : |
|
|
if IS_WINDOWS_PLATFORM : |
|
|
options_file = "scons/windows_mscv71_options.py" |
|
|
else: |
|
|
options_file = "scons/linux_gcc_eg_options.py" |
|
35 |
|
|
36 |
# and load it |
# Read configuration options from file scons/<hostname>_options.py |
37 |
opts = Options(options_file, ARGUMENTS) |
hostname = re.sub("[^0-9a-zA-Z]", "_", socket.gethostname().split('.')[0]) |
38 |
#================================================================ |
tmp = os.path.join("scons",hostname+"_options.py") |
39 |
# |
options_file = ARGUMENTS.get('options_file', tmp) |
40 |
# check if UMFPACK is installed on the system: |
if not os.path.isfile(options_file): |
41 |
# |
options_file = False |
42 |
uf_root=None |
print "Options file not found (expected '%s')" % tmp |
|
for i in [ 'UMFPACK', 'umfpack', 'ufsparse', 'UFSPARSE']: |
|
|
if os.path.isdir(os.path.join(tools_prefix,'include',i)): |
|
|
uf_root=i |
|
|
print i," is used form ",tools_prefix |
|
|
break |
|
|
if not uf_root==None: |
|
|
umf_path_default=os.path.join(tools_prefix,'include',uf_root) |
|
|
umf_lib_path_default=os.path.join(tools_prefix,'lib') |
|
|
umf_libs_default=['umfpack'] |
|
|
amd_path_default=os.path.join(tools_prefix,'include',uf_root) |
|
|
amd_lib_path_default=os.path.join(tools_prefix,'lib') |
|
|
amd_libs_default=['amd'] |
|
|
ufc_path_default=os.path.join(tools_prefix,'include',uf_root) |
|
43 |
else: |
else: |
44 |
umf_path_default=None |
print "Options file is", options_file |
|
umf_lib_path_default=None |
|
|
umf_libs_default=None |
|
|
amd_path_default=None |
|
|
amd_lib_path_default=None |
|
|
amd_libs_default=None |
|
|
ufc_path_default=None |
|
|
# |
|
|
#========================================================================== |
|
|
# |
|
|
# python installation: |
|
|
# |
|
|
python_path_default=os.path.join(tools_prefix,'include','python%s.%s'%(sys.version_info[0],sys.version_info[1])) |
|
|
python_lib_path_default=os.path.join(tools_prefix,'lib') |
|
|
python_lib_default="python%s.%s"%(sys.version_info[0],sys.version_info[1]) |
|
|
|
|
|
#========================================================================== |
|
|
# |
|
|
# boost installation: |
|
|
# |
|
|
boost_path_default=os.path.join(tools_prefix,'include') |
|
|
boost_lib_path_default=os.path.join(tools_prefix,'lib') |
|
|
boost_lib_default=['boost_python'] |
|
45 |
|
|
46 |
#========================================================================== |
# Load options file and command-line arguments |
47 |
# |
opts = Options(options_file, ARGUMENTS) |
|
# check if netCDF is installed on the system: |
|
|
# |
|
|
netCDF_path_default=os.path.join(tools_prefix,'include','netcdf-3') |
|
|
netCDF_lib_path_default=os.path.join(tools_prefix,'lib') |
|
48 |
|
|
49 |
if os.path.isdir(netCDF_path_default) and os.path.isdir(netCDF_lib_path_default): |
############ Load build options ################################ |
|
useNetCDF_default='yes' |
|
|
netCDF_libs_default=[ 'netcdf_c++', 'netcdf' ] |
|
|
else: |
|
|
useNetCDF_default='no' |
|
|
netCDF_path_default=None |
|
|
netCDF_lib_path_default=None |
|
|
netCDF_libs_default=None |
|
50 |
|
|
|
#========================================================================== |
|
|
# |
|
|
# MPI: |
|
|
# |
|
|
if IS_WINDOWS_PLATFORM: |
|
|
useMPI_default='no' |
|
|
mpi_path_default=None |
|
|
mpi_lib_path_default=None |
|
|
mpi_libs_default=[] |
|
|
mpi_run_default=None |
|
|
else: |
|
|
useMPI_default='no' |
|
|
mpi_root='/usr/local' |
|
|
mpi_path_default=os.path.join(mpi_root,'include') |
|
|
mpi_lib_path_default=os.path.join(mpi_root,'lib') |
|
|
mpi_libs_default=[ 'mpich' , 'pthread', 'rt' ] |
|
|
mpi_run_default='mpiexec -np 1' |
|
|
# |
|
|
#========================================================================== |
|
|
# |
|
|
# compile: |
|
|
# |
|
|
cc_flags_default='-O3 -std=c99 -ffast-math -fpic -Wno-unknown-pragmas -ansi' |
|
|
cc_flags_debug_default='-g -O0 -ffast-math -std=c99 -fpic -Wno-unknown-pragmas -ansi' |
|
|
cxx_flags_default='--no-warn -ansi' |
|
|
cxx_flags_debug_default='--no-warn -ansi -DDOASSERT' |
|
|
|
|
|
#============================================================================================== |
|
|
# Default options and options help text |
|
|
# These are defaults and can be overridden using command line arguments or an options file. |
|
|
# if the options_file or ARGUMENTS do not exist then the ones listed as default here are used |
|
|
# DO NOT CHANGE THEM HERE |
|
51 |
opts.AddOptions( |
opts.AddOptions( |
52 |
# Where to install esys stuff |
# Where to install esys stuff |
53 |
('incinstall', 'where the esys headers will be installed', Dir('#.').abspath+'/include'), |
('prefix', 'where everything will be installed', Dir('#.').abspath), |
54 |
('libinstall', 'where the esys libraries will be installed', dir_libraries), |
('incinstall', 'where the esys headers will be installed', os.path.join(Dir('#.').abspath,'include')), |
55 |
('pyinstall', 'where the esys python modules will be installed', dir_packages), |
('bininstall', 'where the esys binaries will be installed', os.path.join(prefix,'bin')), |
56 |
('exinstall', 'where the esys examples will be installed', dir_examples), |
('libinstall', 'where the esys libraries will be installed', os.path.join(prefix,'lib')), |
57 |
('sys_libinstall', 'where the system esys libraries will be installed', sys_dir_libraries), |
('pyinstall', 'where the esys python modules will be installed', os.path.join(prefix,'esys')), |
|
('sys_pyinstall', 'where the system esys python modules will be installed', sys_dir_packages), |
|
|
('sys_exinstall', 'where the system esys examples will be installed', sys_dir_examples), |
|
|
('src_zipfile', 'the source zip file will be installed.', Dir('#.').abspath+"/release/escript_src.zip"), |
|
|
('test_zipfile', 'the test zip file will be installed.', Dir('#.').abspath+"/release/escript_tests.zip"), |
|
|
('src_tarfile', 'the source tar file will be installed.', Dir('#.').abspath+"/release/escript_src.tar.gz"), |
|
|
('test_tarfile', 'the test tar file will be installed.', Dir('#.').abspath+"/release/escript_tests.tar.gz"), |
|
|
('examples_tarfile', 'the examples tar file will be installed.', Dir('#.').abspath+"/release/doc/escript_examples.tar.gz"), |
|
|
('examples_zipfile', 'the examples zip file will be installed.', Dir('#.').abspath+"/release/doc/escript_examples.zip"), |
|
|
('guide_pdf', 'name of the user guide in pdf format', Dir('#.').abspath+"/release/doc/user/guide.pdf"), |
|
|
('api_epydoc', 'name of the epydoc api docs directory', Dir('#.').abspath+"/release/doc/epydoc"), |
|
|
('guide_html', 'name of the directory for user guide in html format', Dir('#.').abspath+"/release/doc/user/html"), |
|
|
('api_doxygen', 'name of the doxygen api docs directory',prefix+"/release/doc/doxygen"), |
|
58 |
# Compilation options |
# Compilation options |
59 |
BoolOption('dodebug', 'Do you want a debug build?', 'no'), |
BoolOption('dodebug', 'For backwards compatibility', 'no'), |
60 |
BoolOption('bounds_check', 'Do you want extra array bounds checking?', 'no'), |
BoolOption('usedebug', 'Do you want a debug build?', 'no'), |
61 |
('options_file', "Optional file containing preferred options. Ignored if it doesn't exist (default: scons/<hostname>_options.py)", options_file), |
BoolOption('usevtk', 'Do you want to use VTK?', 'yes'), |
62 |
('cc_defines','C/C++ defines to use', None), |
('options_file', 'File of paths/options. Default: scons/<hostname>_options.py', options_file), |
63 |
('cc_flags','C compiler flags to use (Release build)', cc_flags_default), |
('win_cc_name', 'windows C compiler name if needed', 'msvc'), |
64 |
('cc_flags_debug', 'C compiler flags to use (Debug build)', cc_flags_debug_default), |
# The strings -DDEFAULT_ get replaced by scons/<hostname>_options.py or by defaults below |
65 |
('cxx_flags', 'C++ compiler flags to use (Release build)', cxx_flags_default), |
('cc_flags', 'C compiler flags to use', '-DEFAULT_1'), |
66 |
('cxx_flags_debug', 'C++ compiler flags to use (Debug build)', cxx_flags_debug_default), |
('cc_optim', 'C compiler optimization flags to use', '-DEFAULT_2'), |
67 |
('omp_flags', 'OpenMP compiler flags to use (Release build)', ''), |
('cc_debug', 'C compiler debug flags to use', '-DEFAULT_3'), |
68 |
('omp_flags_debug', 'OpenMP compiler flags to use (Debug build)', ''), |
('omp_optim', 'OpenMP compiler flags to use (Release build)', '-DEFAULT_4'), |
69 |
('ar_flags', 'Static library archiver flags to use', None), |
('omp_debug', 'OpenMP compiler flags to use (Debug build)', '-DEFAULT_5'), |
70 |
('sys_libs', 'System libraries to link with', None), |
('omp_libs', 'OpenMP compiler libraries to link with', '-DEFAULT_6'), |
71 |
('tar_flags','flags for zip files','-c -z'), |
('cc_extra', 'Extra C/C++ flags', ''), |
72 |
# MKL |
('ld_extra', 'Extra linker flags', ''), |
73 |
PathOption('mkl_path', 'Path to MKL includes', None), |
('sys_libs', 'System libraries to link with', []), |
74 |
PathOption('mkl_lib_path', 'Path to MKL libs', None), |
('ar_flags', 'Static library archiver flags to use', ''), |
75 |
('mkl_libs', 'MKL libraries to link with', None), |
BoolOption('useopenmp', 'Compile parallel version using OpenMP', 'yes'), |
76 |
# SCSL |
BoolOption('usepedantic', 'Compile with -pedantic if using gcc', 'no'), |
77 |
PathOption('scsl_path', 'Path to SCSL includes', None), |
BoolOption('usewarnings','Compile with warnings as errors if using gcc','yes'), |
|
PathOption('scsl_lib_path', 'Path to SCSL libs', None), |
|
|
('scsl_libs', 'SCSL libraries to link with', None), |
|
|
('scsl_libs_MPI', 'SCSL libraries to link with for MPI build', None), |
|
|
# UMFPACK |
|
|
PathOption('ufc_path', 'Path to UFconfig includes', ufc_path_default), |
|
|
PathOption('umf_path', 'Path to UMFPACK includes', umf_path_default), |
|
|
PathOption('umf_lib_path', 'Path to UMFPACK libs', umf_lib_path_default), |
|
|
('umf_libs', 'UMFPACK libraries to link with', umf_libs_default), |
|
|
# AMD (used by UMFPACK) |
|
|
PathOption('amd_path', 'Path to AMD includes', amd_path_default), |
|
|
PathOption('amd_lib_path', 'Path to AMD libs', amd_lib_path_default), |
|
|
('amd_libs', 'AMD libraries to link with', amd_libs_default), |
|
|
# TRILINOS |
|
|
PathOption('trilinos_path', 'Path to TRILINOS includes', None), |
|
|
PathOption('trilinos_lib_path', 'Path to TRILINOS libs', None), |
|
|
('trilinos_libs', 'TRILINOS libraries to link with', None), |
|
|
# BLAS |
|
|
PathOption('blas_path', 'Path to BLAS includes', None), |
|
|
PathOption('blas_lib_path', 'Path to BLAS libs', None), |
|
|
('blas_libs', 'BLAS libraries to link with', None), |
|
|
# netCDF |
|
|
('useNetCDF', 'switch on/off the usage of netCDF', useNetCDF_default), |
|
|
PathOption('netCDF_path', 'Path to netCDF includes', netCDF_path_default), |
|
|
PathOption('netCDF_lib_path', 'Path to netCDF libs', netCDF_lib_path_default), |
|
|
('netCDF_libs', 'netCDF C++ libraries to link with', netCDF_libs_default), |
|
78 |
# Python |
# Python |
79 |
# locations of include files for python |
('python_path', 'Path to Python includes', '/usr/include/'+python_version), |
80 |
# FIXME: python_path should be python_inc_path and the same for boost etc. |
('python_lib_path', 'Path to Python libs', usr_lib), |
81 |
PathOption('python_path', 'Path to Python includes', python_path_default), |
('python_libs', 'Python libraries to link with', [python_version]), |
|
PathOption('python_lib_path', 'Path to Python libs', python_lib_path_default), |
|
|
('python_lib', 'Python libraries to link with', python_lib_default), |
|
82 |
('python_cmd', 'Python command', 'python'), |
('python_cmd', 'Python command', 'python'), |
83 |
# Boost |
# Boost |
84 |
PathOption('boost_path', 'Path to Boost includes', boost_path_default), |
('boost_path', 'Path to Boost includes', '/usr/include'), |
85 |
PathOption('boost_lib_path', 'Path to Boost libs', boost_lib_path_default), |
('boost_lib_path', 'Path to Boost libs', usr_lib), |
86 |
('boost_lib', 'Boost libraries to link with', boost_lib_default), |
('boost_libs', 'Boost libraries to link with', ['boost_python']), |
87 |
# Doc building |
# NetCDF |
88 |
# PathOption('doxygen_path', 'Path to Doxygen executable', None), |
BoolOption('usenetcdf', 'switch on/off the usage of netCDF', 'yes'), |
89 |
# PathOption('epydoc_path', 'Path to Epydoc executable', None), |
('netCDF_path', 'Path to netCDF includes', '/usr/include'), |
90 |
# PAPI |
('netCDF_lib_path', 'Path to netCDF libs', usr_lib), |
91 |
PathOption('papi_path', 'Path to PAPI includes', None), |
('netCDF_libs', 'netCDF C++ libraries to link with', ['netcdf_c++', 'netcdf']), |
|
PathOption('papi_lib_path', 'Path to PAPI libs', None), |
|
|
('papi_libs', 'PAPI libraries to link with', None), |
|
|
('papi_instrument_solver', 'use PAPI in Solver.c to instrument each iteration of the solver', None), |
|
92 |
# MPI |
# MPI |
93 |
BoolOption('useMPI', 'Compile parallel version using MPI', useMPI_default), |
BoolOption('useMPI', 'For backwards compatibility', 'no'), |
94 |
|
BoolOption('usempi', 'Compile parallel version using MPI', 'no'), |
95 |
('MPICH_IGNORE_CXX_SEEK', 'name of macro to ignore MPI settings of C++ SEEK macro (for MPICH)' , 'MPICH_IGNORE_CXX_SEEK'), |
('MPICH_IGNORE_CXX_SEEK', 'name of macro to ignore MPI settings of C++ SEEK macro (for MPICH)' , 'MPICH_IGNORE_CXX_SEEK'), |
96 |
PathOption('mpi_path', 'Path to MPI includes', mpi_path_default), |
('mpi_path', 'Path to MPI includes', '/usr/include'), |
97 |
('mpi_run', 'mpirun name' , mpi_run_default), |
('mpi_run', 'mpirun name' , 'mpiexec -np 1'), |
98 |
PathOption('mpi_lib_path', 'Path to MPI libs (needs to be added to the LD_LIBRARY_PATH)',mpi_lib_path_default), |
('mpi_lib_path', 'Path to MPI libs (needs to be added to the LD_LIBRARY_PATH)', usr_lib), |
99 |
('mpi_libs', 'MPI libraries to link with (needs to be shared!)', mpi_libs_default) |
('mpi_libs', 'MPI libraries to link with (needs to be shared!)', ['mpich' , 'pthread', 'rt']), |
100 |
|
# ParMETIS |
101 |
|
BoolOption('useparmetis', 'Compile parallel version using ParMETIS', 'yes'), |
102 |
|
('parmetis_path', 'Path to ParMETIS includes', '/usr/include'), |
103 |
|
('parmetis_lib_path', 'Path to ParMETIS library', usr_lib), |
104 |
|
('parmetis_libs', 'ParMETIS library to link with', ['parmetis', 'metis']), |
105 |
|
# PAPI |
106 |
|
BoolOption('usepapi', 'switch on/off the usage of PAPI', 'no'), |
107 |
|
('papi_path', 'Path to PAPI includes', '/usr/include'), |
108 |
|
('papi_lib_path', 'Path to PAPI libs', usr_lib), |
109 |
|
('papi_libs', 'PAPI libraries to link with', ['papi']), |
110 |
|
BoolOption('papi_instrument_solver', 'use PAPI in Solver.c to instrument each iteration of the solver', False), |
111 |
|
# MKL |
112 |
|
BoolOption('usemkl', 'switch on/off the usage of MKL', 'no'), |
113 |
|
('mkl_path', 'Path to MKL includes', '/sw/sdev/cmkl/10.0.2.18/include'), |
114 |
|
('mkl_lib_path', 'Path to MKL libs', '/sw/sdev/cmkl/10.0.2.18/lib/em64t'), |
115 |
|
('mkl_libs', 'MKL libraries to link with', ['mkl_solver', 'mkl_em64t', 'guide', 'pthread']), |
116 |
|
# UMFPACK |
117 |
|
BoolOption('useumfpack', 'switch on/off the usage of UMFPACK', 'no'), |
118 |
|
('ufc_path', 'Path to UFconfig includes', '/usr/include/suitesparse'), |
119 |
|
('umf_path', 'Path to UMFPACK includes', '/usr/include/suitesparse'), |
120 |
|
('umf_lib_path', 'Path to UMFPACK libs', usr_lib), |
121 |
|
('umf_libs', 'UMFPACK libraries to link with', ['umfpack']), |
122 |
|
# AMD (used by UMFPACK) |
123 |
|
('amd_path', 'Path to AMD includes', '/usr/include/suitesparse'), |
124 |
|
('amd_lib_path', 'Path to AMD libs', usr_lib), |
125 |
|
('amd_libs', 'AMD libraries to link with', ['amd']), |
126 |
|
# BLAS (used by UMFPACK) |
127 |
|
('blas_path', 'Path to BLAS includes', '/usr/include/suitesparse'), |
128 |
|
('blas_lib_path', 'Path to BLAS libs', usr_lib), |
129 |
|
('blas_libs', 'BLAS libraries to link with', ['blas']), |
130 |
|
# An option for specifying the compiler tools set (see windows branch). |
131 |
|
('tools_names', 'allow control over the tools in the env setup', ['intelc']) |
132 |
) |
) |
133 |
#================================================================================================= |
|
134 |
# |
############ Specify which compilers to use #################### |
135 |
# Note: On the Altix the intel compilers are not automatically |
|
136 |
# detected by scons intelc.py script. The Altix has a different directory |
# intelc uses regular expressions improperly and emits a warning about |
137 |
# path and in some locations the "modules" facility is used to support |
# failing to find the compilers. This warning can be safely ignored. |
|
# 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 |
|
|
# |
|
138 |
|
|
139 |
if IS_WINDOWS_PLATFORM: |
if IS_WINDOWS_PLATFORM: |
140 |
env = Environment(tools = ['default', 'msvc'], options = opts) |
env = Environment(options = opts) |
141 |
|
env = Environment(tools = ['default'] + env['tools_names'], |
142 |
|
options = opts) |
143 |
else: |
else: |
144 |
if os.uname()[4]=='ia64': |
if socket.gethostname().split('.')[0] == 'service0': |
145 |
|
env = Environment(tools = ['default', 'intelc'], options = opts) |
146 |
|
elif os.uname()[4]=='ia64': |
147 |
env = Environment(tools = ['default', 'intelc'], options = opts) |
env = Environment(tools = ['default', 'intelc'], options = opts) |
148 |
if env['CXX'] == 'icpc': |
if env['CXX'] == 'icpc': |
149 |
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) |
150 |
else: |
else: |
151 |
env = Environment(tools = ['default'], options = opts) |
env = Environment(tools = ['default'], options = opts) |
152 |
Help(opts.GenerateHelpText(env)) |
Help(opts.GenerateHelpText(env)) |
153 |
|
|
154 |
if env['bounds_check']: |
############ Fill in compiler options if not set above ######### |
|
env.Append(CPPDEFINES = [ 'BOUNDS_CHECK' ]) |
|
|
env.Append(CXXDEFINES = [ 'BOUNDS_CHECK' ]) |
|
|
bounds_check = env['bounds_check'] |
|
|
else: |
|
|
bounds_check = 0 |
|
155 |
|
|
156 |
#================================================================================================= |
# Backwards compatibility: allow dodebug=yes and useMPI=yes |
157 |
# |
if env['dodebug']: env['usedebug'] = 1 |
158 |
# Initialise Scons Build Environment |
if env['useMPI']: env['usempi'] = 1 |
159 |
# check for user environment variables we are interested in |
|
160 |
try: |
# Default compiler options (override allowed in hostname_options.py, but should not be necessary) |
161 |
tmp = os.environ['PYTHONPATH'] |
# For both C and C++ you get: cc_flags and either the optim flags or debug flags |
162 |
env['ENV']['PYTHONPATH'] = tmp |
|
163 |
except KeyError: |
if env["CC"] == "icc": |
164 |
pass |
# Intel compilers |
165 |
|
cc_flags = "-fPIC -ansi -wd161 -w1 -vec-report0 -DBLOCKTIMER -DCORE_ID1" |
166 |
|
cc_optim = "-O3 -ftz -IPF_ftlacc- -IPF_fma -fno-alias" |
167 |
|
cc_debug = "-g -O0 -DDOASSERT -DDOPROF -DBOUNDS_CHECK" |
168 |
|
omp_optim = "-openmp -openmp_report0" |
169 |
|
omp_debug = "-openmp -openmp_report0" |
170 |
|
omp_libs = ['guide', 'pthread'] |
171 |
|
pedantic = "" |
172 |
|
fatalwarning = "" # Switch to turn warnings into errors |
173 |
|
elif env["CC"] == "gcc": |
174 |
|
# GNU C on any system |
175 |
|
cc_flags = "-Wall -fPIC -ansi -ffast-math -Wno-unknown-pragmas -DBLOCKTIMER -isystem /usr/include/boost/ -isystem /usr/include/python2.5/ -Wno-sign-compare" |
176 |
|
cc_optim = "-O3" |
177 |
|
cc_debug = "-g -O0 -DDOASSERT -DDOPROF -DBOUNDS_CHECK" |
178 |
|
omp_optim = "" |
179 |
|
omp_debug = "" |
180 |
|
omp_libs = [] |
181 |
|
pedantic = "-pedantic-errors -Wno-long-long" |
182 |
|
fatalwarning = "-Werror" |
183 |
|
elif env["CC"] == "cl": |
184 |
|
# Microsoft Visual C on Windows |
185 |
|
cc_flags = "/FD /EHsc /GR /wd4068 -D_USE_MATH_DEFINES -DDLL_NETCDF" |
186 |
|
cc_optim = "/O2 /Op /MT /W3" |
187 |
|
cc_debug = "/Od /RTC1 /MTd /ZI -DBOUNDS_CHECK" |
188 |
|
omp_optim = "" |
189 |
|
omp_debug = "" |
190 |
|
omp_libs = [] |
191 |
|
pedantic = "" |
192 |
|
fatalwarning = "" |
193 |
|
elif env["CC"] == "icl": |
194 |
|
# intel C on Windows, see windows_msvc71_options.py for a start |
195 |
|
pedantic = "" |
196 |
|
fatalwarning = "" |
197 |
|
|
198 |
|
# If not specified in hostname_options.py then set them here |
199 |
|
if env["cc_flags"] == "-DEFAULT_1": env['cc_flags'] = cc_flags |
200 |
|
if env["cc_optim"] == "-DEFAULT_2": env['cc_optim'] = cc_optim |
201 |
|
if env["cc_debug"] == "-DEFAULT_3": env['cc_debug'] = cc_debug |
202 |
|
if env["omp_optim"] == "-DEFAULT_4": env['omp_optim'] = omp_optim |
203 |
|
if env["omp_debug"] == "-DEFAULT_5": env['omp_debug'] = omp_debug |
204 |
|
if env["omp_libs"] == "-DEFAULT_6": env['omp_libs'] = omp_libs |
205 |
|
|
206 |
|
# OpenMP is disabled if useopenmp=no or both variables omp_optim and omp_debug are empty |
207 |
|
if not env["useopenmp"]: |
208 |
|
env['omp_optim'] = "" |
209 |
|
env['omp_debug'] = "" |
210 |
|
env['omp_libs'] = [] |
211 |
|
|
212 |
|
if env['omp_optim'] == "" and env['omp_debug'] == "": env["useopenmp"] = 0 |
213 |
|
|
214 |
|
############ Copy environment variables into scons env ######### |
215 |
|
|
216 |
|
try: env['ENV']['OMP_NUM_THREADS'] = os.environ['OMP_NUM_THREADS'] |
217 |
|
except KeyError: env['ENV']['OMP_NUM_THREADS'] = 1 |
218 |
|
|
219 |
|
try: env['ENV']['PATH'] = os.environ['PATH'] |
220 |
|
except KeyError: pass |
221 |
|
|
222 |
|
try: env['ENV']['PYTHONPATH'] = os.environ['PYTHONPATH'] |
223 |
|
except KeyError: pass |
224 |
|
|
225 |
|
try: env['ENV']['C_INCLUDE_PATH'] = os.environ['C_INCLUDE_PATH'] |
226 |
|
except KeyError: pass |
227 |
|
|
228 |
|
try: env['ENV']['CPLUS_INCLUDE_PATH'] = os.environ['CPLUS_INCLUDE_PATH'] |
229 |
|
except KeyError: pass |
230 |
|
|
231 |
|
try: env['ENV']['LD_LIBRARY_PATH'] = os.environ['LD_LIBRARY_PATH'] |
232 |
|
except KeyError: pass |
233 |
|
|
234 |
|
try: env['ENV']['LIBRARY_PATH'] = os.environ['LIBRARY_PATH'] |
235 |
|
except KeyError: pass |
236 |
|
|
237 |
|
try: env['ENV']['DISPLAY'] = os.environ['DISPLAY'] |
238 |
|
except KeyError: pass |
239 |
|
|
240 |
|
try: env['ENV']['XAUTHORITY'] = os.environ['XAUTHORITY'] |
241 |
|
except KeyError: pass |
242 |
|
|
243 |
|
try: env['ENV']['HOME'] = os.environ['HOME'] |
244 |
|
except KeyError: pass |
245 |
|
|
246 |
|
# Configure for test suite |
247 |
|
env.PrependENVPath('PYTHONPATH', prefix) |
248 |
|
env.PrependENVPath('LD_LIBRARY_PATH', env['libinstall']) |
249 |
|
|
250 |
|
env['ENV']['ESCRIPT_ROOT'] = prefix |
251 |
|
|
252 |
|
############ Set up paths for Configure() ###################### |
253 |
|
|
254 |
|
# Make a copy of an environment |
255 |
|
# Use env.Clone if available, but fall back on env.Copy for older version of scons |
256 |
|
def clone_env(env): |
257 |
|
if 'Clone' in dir(env): return env.Clone() # scons-0.98 |
258 |
|
else: return env.Copy() # scons-0.96 |
259 |
|
|
260 |
|
# Add cc option -I<Escript>/trunk/include |
261 |
|
env.Append(CPPPATH = [Dir('include')]) |
262 |
|
|
263 |
|
# Add cc option -L<Escript>/trunk/lib |
264 |
|
env.Append(LIBPATH = [Dir(env['libinstall'])]) |
265 |
|
|
266 |
env.PrependENVPath('PYTHONPATH', source_root) |
env.Append(CPPDEFINES = ['ESCRIPT_EXPORTS', 'FINLEY_EXPORTS']) |
267 |
|
|
268 |
try: |
if env['cc_extra'] != '': env.Append(CCFLAGS = env['cc_extra']) |
269 |
omp_num_threads = os.environ['OMP_NUM_THREADS'] |
if env['ld_extra'] != '': env.Append(LINKFLAGS = env['ld_extra']) |
|
except KeyError: |
|
|
omp_num_threads = 1 |
|
|
env['ENV']['OMP_NUM_THREADS'] = omp_num_threads |
|
270 |
|
|
271 |
try: |
if env['usepedantic']: env.Append(CCFLAGS = pedantic) |
|
path = os.environ['PATH'] |
|
|
env['ENV']['PATH'] = path |
|
|
except KeyError: |
|
|
omp_num_threads = 1 |
|
272 |
|
|
273 |
env['ENV']['OMP_NUM_THREADS'] = omp_num_threads |
# MS Windows |
274 |
|
if IS_WINDOWS_PLATFORM: |
275 |
|
env.PrependENVPath('PATH', [env['boost_lib_path']]) |
276 |
|
env.PrependENVPath('PATH', [env['libinstall']]) |
277 |
|
if env['usenetcdf']: |
278 |
|
env.PrependENVPath('PATH', [env['netCDF_lib_path']]) |
279 |
|
|
280 |
|
env.Append(ARFLAGS = env['ar_flags']) |
281 |
|
|
282 |
# Copy some variables from the system environment to the build environment |
# Get the global Subversion revision number for getVersion() method |
283 |
try: |
try: |
284 |
env['ENV']['DISPLAY'] = os.environ['DISPLAY'] |
global_revision = os.popen("svnversion -n .").read() |
285 |
env['ENV']['XAUTHORITY'] = os.environ['XAUTHORITY'] |
global_revision = re.sub(":.*", "", global_revision) |
286 |
home_temp = os.environ['HOME'] # MPICH2's mpd needs $HOME to find $HOME/.mpd.conf |
global_revision = re.sub("[^0-9]", "", global_revision) |
287 |
env['ENV']['HOME'] = home_temp |
except: |
288 |
except KeyError: |
global_revision="-1" |
289 |
pass |
if global_revision == "": global_revision="-2" |
290 |
|
env.Append(CPPDEFINES = ["SVN_VERSION="+global_revision]) |
291 |
|
|
292 |
try: |
############ numarray (required) ############################### |
|
tmp = os.environ['PATH'] |
|
|
env['ENV']['PATH'] = tmp |
|
|
except KeyError: |
|
|
pass |
|
293 |
|
|
294 |
try: |
try: |
295 |
tmp = os.environ['LD_LIBRARY_PATH'] |
from numarray import identity |
296 |
print tmp |
except ImportError: |
297 |
env['ENV']['LD_LIBRARY_PATH'] = tmp |
print "Cannot import numarray, you need to set your PYTHONPATH" |
298 |
except KeyError: |
sys.exit(1) |
|
pass |
|
|
#========================================================================== |
|
|
# |
|
|
# Add some customer builders |
|
|
# |
|
|
py_builder = Builder(action = scons_extensions.build_py, suffix = '.pyc', src_suffix = '.py', single_source=True) |
|
|
env.Append(BUILDERS = {'PyCompile' : py_builder}); |
|
299 |
|
|
300 |
runUnitTest_builder = Builder(action = scons_extensions.runUnitTest, suffix = '.passed', |
############ C compiler (required) ############################# |
|
src_suffix=env['PROGSUFFIX'], single_source=True) |
|
301 |
|
|
302 |
env.Append(BUILDERS = {'RunUnitTest' : runUnitTest_builder}); |
# Create a Configure() environment for checking existence of required libraries and headers |
303 |
|
conf = Configure(clone_env(env)) |
304 |
|
|
305 |
runPyUnitTest_builder = Builder(action = scons_extensions.runPyUnitTest, suffix = '.passed', src_suffic='.py', single_source=True) |
# Test that the compiler is working |
306 |
env.Append(BUILDERS = {'RunPyUnitTest' : runPyUnitTest_builder}); |
if not conf.CheckFunc('printf'): |
307 |
|
print "Cannot run C compiler '%s' (or libc is missing)" % (env['CC']) |
308 |
|
sys.exit(1) |
309 |
|
|
310 |
# Convert the options which are held in environment variable into python variables for ease of handling and configure compilation options |
if conf.CheckFunc('gethostname'): |
311 |
try: |
conf.env.Append(CPPDEFINES = ['HAVE_GETHOSTNAME']) |
|
incinstall = env['incinstall'] |
|
|
env.Append(CPPPATH = [incinstall,]) |
|
|
except KeyError: |
|
|
incinstall = None |
|
|
try: |
|
|
libinstall = env['libinstall'] |
|
|
env.Append(LIBPATH = [libinstall,]) # Adds -L for building of libescript.so libfinley.so escriptcpp.so finleycpp.so |
|
|
env.PrependENVPath('LD_LIBRARY_PATH', libinstall) |
|
|
if IS_WINDOWS_PLATFORM : |
|
|
env.PrependENVPath('PATH', libinstall) |
|
|
env.PrependENVPath('PATH', env['boost_lib_path']) |
|
|
except KeyError: |
|
|
libinstall = None |
|
|
try: |
|
|
pyinstall = env['pyinstall'] # all targets will install into pyinstall/esys but PYTHONPATH points at straight pyinstall so you go import esys.escript etc |
|
|
except KeyError: |
|
|
pyinstall = None |
|
312 |
|
|
313 |
try: |
############ python libraries (required) ####################### |
|
cc_defines = env['cc_defines'] |
|
|
env.Append(CPPDEFINES = cc_defines) |
|
|
except KeyError: |
|
|
pass |
|
|
try: |
|
|
flags = env['ar_flags'] |
|
|
env.Append(ARFLAGS = flags) |
|
|
except KeyError: |
|
|
ar_flags = None |
|
|
try: |
|
|
sys_libs = env['sys_libs'] |
|
|
except KeyError: |
|
|
sys_libs = [] |
|
314 |
|
|
315 |
try: |
conf.env.AppendUnique(CPPPATH = [env['python_path']]) |
316 |
tar_flags = env['tar_flags'] |
conf.env.AppendUnique(LIBPATH = [env['python_lib_path']]) |
317 |
env.Replace(TARFLAGS = tar_flags) |
conf.env.AppendUnique(LIBS = [env['python_libs']]) |
|
except KeyError: |
|
|
pass |
|
318 |
|
|
319 |
try: |
conf.env.PrependENVPath('LD_LIBRARY_PATH', env['python_lib_path']) # The wrapper script needs to find these libs |
|
exinstall = env['exinstall'] |
|
|
except KeyError: |
|
|
exinstall = None |
|
|
try: |
|
|
sys_libinstall = env['sys_libinstall'] |
|
|
except KeyError: |
|
|
sys_libinstall = None |
|
|
try: |
|
|
sys_pyinstall = env['sys_pyinstall'] |
|
|
except KeyError: |
|
|
sys_pyinstall = None |
|
|
try: |
|
|
sys_exinstall = env['sys_exinstall'] |
|
|
except KeyError: |
|
|
sys_exinstall = None |
|
320 |
|
|
321 |
# ====================== debugging =================================== |
if not conf.CheckCHeader('Python.h'): |
322 |
try: |
print "Cannot find python include files (tried 'Python.h' in directory %s)" % (env['python_path']) |
323 |
dodebug = env['dodebug'] |
sys.exit(1) |
324 |
except KeyError: |
if not conf.CheckFunc('Py_Main'): |
325 |
dodebug = None |
print "Cannot find python library method Py_Main (tried lib %s in directory %s)" % (env['python_libs'], env['python_lib_path']) |
326 |
|
sys.exit(1) |
327 |
|
|
328 |
# === switch on omp =================================================== |
############ boost (required) ################################## |
|
try: |
|
|
omp_flags = env['omp_flags'] |
|
|
except KeyError: |
|
|
omp_flags = '' |
|
329 |
|
|
330 |
try: |
conf.env.AppendUnique(CPPPATH = [env['boost_path']]) |
331 |
omp_flags_debug = env['omp_flags_debug'] |
conf.env.AppendUnique(LIBPATH = [env['boost_lib_path']]) |
332 |
except KeyError: |
conf.env.AppendUnique(LIBS = [env['boost_libs']]) |
|
omp_flags_debug = '' |
|
333 |
|
|
334 |
# ========= use mpi? ===================================================== |
conf.env.PrependENVPath('LD_LIBRARY_PATH', env['boost_lib_path']) # The wrapper script needs to find these libs |
335 |
try: |
|
336 |
useMPI = env['useMPI'] |
if not conf.CheckCXXHeader('boost/python.hpp'): |
337 |
except KeyError: |
print "Cannot find boost include files (tried boost/python.hpp in directory %s)" % (env['boost_path']) |
338 |
useMPI = None |
sys.exit(1) |
339 |
# ========= set compiler flags =========================================== |
if not conf.CheckFunc('PyObject_SetAttr'): |
340 |
|
print "Cannot find boost library method PyObject_SetAttr (tried method PyObject_SetAttr in library %s in directory %s)" % (env['boost_libs'], env['boost_lib_path']) |
341 |
# Can't use MPI and OpenMP simultaneously at this time |
sys.exit(1) |
342 |
if useMPI: |
|
343 |
omp_flags='' |
# Commit changes to environment |
344 |
omp_flags_debug='' |
env = conf.Finish() |
345 |
|
|
346 |
if dodebug: |
############ VTK (optional) #################################### |
347 |
try: |
|
348 |
flags = env['cc_flags_debug'] + ' ' + omp_flags_debug |
if env['usevtk']: |
349 |
env.Append(CCFLAGS = flags) |
try: |
350 |
except KeyError: |
import vtk |
351 |
pass |
env['usevtk'] = 1 |
352 |
else: |
except ImportError: |
353 |
try: |
env['usevtk'] = 0 |
354 |
flags = env['cc_flags'] + ' ' + omp_flags |
|
355 |
env.Append(CCFLAGS = flags) |
# Add VTK to environment env if it was found |
356 |
except KeyError: |
if env['usevtk']: |
357 |
pass |
env.Append(CPPDEFINES = ['USE_VTK']) |
358 |
if dodebug: |
|
359 |
try: |
############ NetCDF (optional) ################################# |
360 |
flags = env['cxx_flags_debug'] |
|
361 |
env.Append(CXXFLAGS = flags) |
conf = Configure(clone_env(env)) |
362 |
except KeyError: |
|
363 |
pass |
if env['usenetcdf']: |
364 |
|
conf.env.AppendUnique(CPPPATH = [env['netCDF_path']]) |
365 |
|
conf.env.AppendUnique(LIBPATH = [env['netCDF_lib_path']]) |
366 |
|
conf.env.AppendUnique(LIBS = [env['netCDF_libs']]) |
367 |
|
conf.env.PrependENVPath('LD_LIBRARY_PATH', env['netCDF_lib_path']) # The wrapper script needs to find these libs |
368 |
|
|
369 |
|
if env['usenetcdf'] and not conf.CheckCHeader('netcdf.h'): env['usenetcdf'] = 0 |
370 |
|
if env['usenetcdf'] and not conf.CheckFunc('nc_open'): env['usenetcdf'] = 0 |
371 |
|
|
372 |
|
# Add NetCDF to environment env if it was found |
373 |
|
if env['usenetcdf']: |
374 |
|
env = conf.Finish() |
375 |
|
env.Append(CPPDEFINES = ['USE_NETCDF']) |
376 |
else: |
else: |
377 |
try: |
conf.Finish() |
378 |
flags = env['cxx_flags'] |
|
379 |
env.Append(CXXFLAGS = flags) |
############ PAPI (optional) ################################### |
|
except KeyError: |
|
|
pass |
|
|
try: |
|
|
if env['CC'] == 'gcc': env.Append(CCFLAGS = "-pedantic-errors -Wno-long-long") |
|
|
except: |
|
|
pass |
|
380 |
|
|
381 |
# ============= Remember what options were used in the compile ===================================== |
# Start a new configure environment that reflects what we've already found |
382 |
if not IS_WINDOWS_PLATFORM: |
conf = Configure(clone_env(env)) |
383 |
env.Execute("/bin/rm -f " + libinstall + "/Compiled.with.*") |
|
384 |
if dodebug: env.Execute("touch " + libinstall + "/Compiled.with.debug") |
if env['usepapi']: |
385 |
if useMPI: env.Execute("touch " + libinstall + "/Compiled.with.mpi") |
conf.env.AppendUnique(CPPPATH = [env['papi_path']]) |
386 |
if omp_flags != '': env.Execute("touch " + libinstall + "/Compiled.with.OpenMP") |
conf.env.AppendUnique(LIBPATH = [env['papi_lib_path']]) |
387 |
if bounds_check: env.Execute("touch " + libinstall + "/Compiled.with.bounds_check") |
conf.env.AppendUnique(LIBS = [env['papi_libs']]) |
388 |
|
conf.env.PrependENVPath('LD_LIBRARY_PATH', env['papi_lib_path']) # The wrapper script needs to find these libs |
389 |
# ============= set mkl (but only of no MPI) ===================================== |
|
390 |
if not useMPI: |
if env['usepapi'] and not conf.CheckCHeader('papi.h'): env['usepapi'] = 0 |
391 |
try: |
if env['usepapi'] and not conf.CheckFunc('PAPI_start_counters'): env['usepapi'] = 0 |
392 |
includes = env['mkl_path'] |
|
393 |
env.Append(CPPPATH = [includes,]) |
# Add PAPI to environment env if it was found |
394 |
except KeyError: |
if env['usepapi']: |
395 |
pass |
env = conf.Finish() |
396 |
|
env.Append(CPPDEFINES = ['BLOCKPAPI']) |
|
try: |
|
|
lib_path = env['mkl_lib_path'] |
|
|
env.Append(LIBPATH = [lib_path,]) |
|
|
env['ENV']['LD_LIBRARY_PATH']+=":"+lib_path |
|
|
except KeyError: |
|
|
pass |
|
|
|
|
|
try: |
|
|
mkl_libs = env['mkl_libs'] |
|
|
except KeyError: |
|
|
mkl_libs = [] |
|
397 |
else: |
else: |
398 |
mkl_libs = [] |
conf.Finish() |
399 |
|
|
400 |
|
############ MKL (optional) #################################### |
401 |
|
|
402 |
|
# Start a new configure environment that reflects what we've already found |
403 |
|
conf = Configure(clone_env(env)) |
404 |
|
|
405 |
|
if env['usemkl']: |
406 |
|
conf.env.AppendUnique(CPPPATH = [env['mkl_path']]) |
407 |
|
conf.env.AppendUnique(LIBPATH = [env['mkl_lib_path']]) |
408 |
|
conf.env.AppendUnique(LIBS = [env['mkl_libs']]) |
409 |
|
conf.env.PrependENVPath('LD_LIBRARY_PATH', env['mkl_lib_path']) # The wrapper script needs to find these libs |
410 |
|
|
411 |
# ============= set scsl (but only of no MPI) ===================================== |
if env['usemkl'] and not conf.CheckCHeader('mkl_solver.h'): env['usemkl'] = 0 |
412 |
if not useMPI: |
if env['usemkl'] and not conf.CheckFunc('pardiso_'): env['usemkl'] = 0 |
|
try: |
|
|
includes = env['scsl_path'] |
|
|
env.Append(CPPPATH = [includes,]) |
|
|
except KeyError: |
|
|
pass |
|
|
|
|
|
try: |
|
|
lib_path = env['scsl_lib_path'] |
|
|
env.Append(LIBPATH = [lib_path,]) |
|
|
env['ENV']['LD_LIBRARY_PATH']+=":"+lib_path |
|
|
except KeyError: |
|
|
pass |
|
|
|
|
|
try: |
|
|
scsl_libs = env['scsl_libs'] |
|
|
except KeyError: |
|
|
scsl_libs = [ ] |
|
413 |
|
|
414 |
|
# Add MKL to environment env if it was found |
415 |
|
if env['usemkl']: |
416 |
|
env = conf.Finish() |
417 |
|
env.Append(CPPDEFINES = ['MKL']) |
418 |
else: |
else: |
419 |
scsl_libs = [] |
conf.Finish() |
420 |
|
|
421 |
# ============= set TRILINOS (but only with MPI) ===================================== |
############ UMFPACK (optional) ################################ |
422 |
if useMPI: |
|
423 |
try: |
# Start a new configure environment that reflects what we've already found |
424 |
includes = env['trilinos_path'] |
conf = Configure(clone_env(env)) |
425 |
env.Append(CPPPATH = [includes,]) |
|
426 |
except KeyError: |
if env['useumfpack']: |
427 |
pass |
conf.env.AppendUnique(CPPPATH = [env['ufc_path']]) |
428 |
|
conf.env.AppendUnique(CPPPATH = [env['umf_path']]) |
429 |
try: |
conf.env.AppendUnique(LIBPATH = [env['umf_lib_path']]) |
430 |
lib_path = env['trilinos_lib_path'] |
conf.env.AppendUnique(LIBS = [env['umf_libs']]) |
431 |
env.Append(LIBPATH = [lib_path,]) |
conf.env.AppendUnique(CPPPATH = [env['amd_path']]) |
432 |
except KeyError: |
conf.env.AppendUnique(LIBPATH = [env['amd_lib_path']]) |
433 |
pass |
conf.env.AppendUnique(LIBS = [env['amd_libs']]) |
434 |
|
conf.env.AppendUnique(CPPPATH = [env['blas_path']]) |
435 |
try: |
conf.env.AppendUnique(LIBPATH = [env['blas_lib_path']]) |
436 |
trilinos_libs = env['trilinos_libs'] |
conf.env.AppendUnique(LIBS = [env['blas_libs']]) |
437 |
except KeyError: |
conf.env.PrependENVPath('LD_LIBRARY_PATH', env['umf_lib_path']) # The wrapper script needs to find these libs |
438 |
trilinos_libs = [] |
conf.env.PrependENVPath('LD_LIBRARY_PATH', env['amd_lib_path']) # The wrapper script needs to find these libs |
439 |
|
conf.env.PrependENVPath('LD_LIBRARY_PATH', env['blas_lib_path']) # The wrapper script needs to find these libs |
440 |
|
|
441 |
|
if env['useumfpack'] and not conf.CheckCHeader('umfpack.h'): env['useumfpack'] = 0 |
442 |
|
if env['useumfpack'] and not conf.CheckFunc('umfpack_di_symbolic'): env['useumfpack'] = 0 |
443 |
|
|
444 |
|
# Add UMFPACK to environment env if it was found |
445 |
|
if env['useumfpack']: |
446 |
|
env = conf.Finish() |
447 |
|
env.Append(CPPDEFINES = ['UMFPACK']) |
448 |
else: |
else: |
449 |
trilinos_libs = [] |
conf.Finish() |
450 |
|
|
451 |
|
############ Add the compiler flags ############################ |
452 |
|
|
453 |
# ============= set umfpack (but only without MPI) ===================================== |
# Enable debug by choosing either cc_debug or cc_optim |
454 |
umf_libs=[ ] |
if env['usedebug']: |
455 |
if not useMPI: |
env.Append(CCFLAGS = env['cc_debug']) |
456 |
try: |
env.Append(CCFLAGS = env['omp_debug']) |
|
includes = env['umf_path'] |
|
|
env.Append(CPPPATH = [includes,]) |
|
|
except KeyError: |
|
|
pass |
|
|
|
|
|
try: |
|
|
lib_path = env['umf_lib_path'] |
|
|
env.Append(LIBPATH = [lib_path,]) |
|
|
except KeyError: |
|
|
pass |
|
|
|
|
|
try: |
|
|
umf_libs = env['umf_libs'] |
|
|
umf_libs+=umf_libs |
|
|
except KeyError: |
|
|
pass |
|
|
|
|
|
try: |
|
|
includes = env['ufc_path'] |
|
|
env.Append(CPPPATH = [includes,]) |
|
|
except KeyError: |
|
|
pass |
|
|
|
|
|
try: |
|
|
includes = env['amd_path'] |
|
|
env.Append(CPPPATH = [includes,]) |
|
|
except KeyError: |
|
|
pass |
|
|
|
|
|
try: |
|
|
lib_path = env['amd_lib_path'] |
|
|
env.Append(LIBPATH = [lib_path,]) |
|
|
except KeyError: |
|
|
pass |
|
|
|
|
|
try: |
|
|
amd_libs = env['amd_libs'] |
|
|
umf_libs+=amd_libs |
|
|
except KeyError: |
|
|
pass |
|
|
|
|
|
# ============= set TRILINOS (but only with MPI) ===================================== |
|
|
if useMPI: |
|
|
try: |
|
|
includes = env['trilinos_path'] |
|
|
env.Append(CPPPATH = [includes,]) |
|
|
except KeyError: |
|
|
pass |
|
|
|
|
|
try: |
|
|
lib_path = env['trilinos_lib_path'] |
|
|
env.Append(LIBPATH = [lib_path,]) |
|
|
except KeyError: |
|
|
pass |
|
|
|
|
|
try: |
|
|
trilinos_libs = env['trilinos_libs'] |
|
|
except KeyError: |
|
|
trilinos_libs = [] |
|
457 |
else: |
else: |
458 |
trilinos_libs = [] |
env.Append(CCFLAGS = env['cc_optim']) |
459 |
|
env.Append(CCFLAGS = env['omp_optim']) |
460 |
|
|
461 |
# ============= set blas ===================================== |
# Always use cc_flags |
462 |
try: |
env.Append(CCFLAGS = env['cc_flags']) |
463 |
includes = env['blas_path'] |
env.Append(LIBS = [env['omp_libs']]) |
|
env.Append(CPPPATH = [includes,]) |
|
|
except KeyError: |
|
|
pass |
|
464 |
|
|
465 |
try: |
############ MPI (optional) #################################### |
|
lib_path = env['blas_lib_path'] |
|
|
env.Append(LIBPATH = [lib_path,]) |
|
|
except KeyError: |
|
|
pass |
|
466 |
|
|
467 |
try: |
# Create a modified environment for MPI programs (identical to env if usempi=no) |
468 |
blas_libs = env['blas_libs'] |
env_mpi = clone_env(env) |
|
except KeyError: |
|
|
blas_libs = [ ] |
|
469 |
|
|
470 |
# ========== netcdf ==================================== |
# Start a new configure environment that reflects what we've already found |
471 |
try: |
conf = Configure(clone_env(env_mpi)) |
472 |
useNetCDF = env['useNetCDF'] |
|
473 |
except KeyError: |
if env_mpi['usempi']: |
474 |
useNetCDF = 'yes' |
conf.env.AppendUnique(CPPPATH = [env_mpi['mpi_path']]) |
475 |
pass |
conf.env.AppendUnique(LIBPATH = [env_mpi['mpi_lib_path']]) |
476 |
|
conf.env.AppendUnique(LIBS = [env_mpi['mpi_libs']]) |
477 |
if useNetCDF == 'yes': |
conf.env.PrependENVPath('LD_LIBRARY_PATH', env['mpi_lib_path']) # The wrapper script needs to find these libs |
478 |
try: |
|
479 |
netCDF_libs = env['netCDF_libs'] |
if env_mpi['usempi'] and not conf.CheckCHeader('mpi.h'): env_mpi['usempi'] = 0 |
480 |
except KeyError: |
if env_mpi['usempi'] and not conf.CheckFunc('MPI_Init'): env_mpi['usempi'] = 0 |
481 |
pass |
|
482 |
|
# Add MPI to environment env_mpi if it was found |
483 |
env.Append(LIBS = netCDF_libs) |
if env_mpi['usempi']: |
484 |
env.Append(CPPDEFINES = [ 'USE_NETCDF' ]) |
env_mpi = conf.Finish() |
485 |
try: |
env_mpi.Append(CPPDEFINES = ['PASO_MPI', 'MPI_NO_CPPBIND', env_mpi['MPICH_IGNORE_CXX_SEEK']]) |
|
includes = env['netCDF_path'] |
|
|
env.Append(CPPPATH = [includes,]) |
|
|
except KeyError: |
|
|
pass |
|
|
|
|
|
try: |
|
|
lib_path = env['netCDF_lib_path'] |
|
|
env.Append(LIBPATH = [ lib_path, ]) |
|
|
env['ENV']['LD_LIBRARY_PATH']+=":"+lib_path |
|
|
if IS_WINDOWS_PLATFORM : |
|
|
env.PrependENVPath('PATH', lib_path) |
|
|
except KeyError: |
|
|
pass |
|
486 |
else: |
else: |
487 |
print "Warning: Installation is not configured with netCDF. Some I/O function may not be available." |
conf.Finish() |
|
netCDF_libs=[ ] |
|
488 |
|
|
489 |
# ====================== boost ====================================== |
env['usempi'] = env_mpi['usempi'] |
490 |
try: |
|
491 |
includes = env['boost_path'] |
############ ParMETIS (optional) ############################### |
492 |
env.Append(CPPPATH = [includes,]) |
|
493 |
except KeyError: |
# Start a new configure environment that reflects what we've already found |
494 |
pass |
conf = Configure(clone_env(env_mpi)) |
495 |
try: |
|
496 |
lib_path = env['boost_lib_path'] |
if not env_mpi['usempi']: env_mpi['useparmetis'] = 0 |
497 |
env.Append(LIBPATH = [lib_path,]) |
|
498 |
env['ENV']['LD_LIBRARY_PATH']+=":"+lib_path |
if env_mpi['useparmetis']: |
499 |
if IS_WINDOWS_PLATFORM : |
conf.env.AppendUnique(CPPPATH = [env_mpi['parmetis_path']]) |
500 |
env.PrependENVPath('PATH', lib_path) |
conf.env.AppendUnique(LIBPATH = [env_mpi['parmetis_lib_path']]) |
501 |
except KeyError: |
conf.env.AppendUnique(LIBS = [env_mpi['parmetis_libs']]) |
502 |
pass |
conf.env.PrependENVPath('LD_LIBRARY_PATH', env['parmetis_lib_path']) # The wrapper script needs to find these libs |
503 |
try: |
|
504 |
boost_lib = env['boost_lib'] |
if env_mpi['useparmetis'] and not conf.CheckCHeader('parmetis.h'): env_mpi['useparmetis'] = 0 |
505 |
except KeyError: |
if env_mpi['useparmetis'] and not conf.CheckFunc('ParMETIS_V3_PartGeomKway'): env_mpi['useparmetis'] = 0 |
506 |
boost_lib = None |
|
507 |
# ====================== python ====================================== |
# Add ParMETIS to environment env_mpi if it was found |
508 |
try: |
if env_mpi['useparmetis']: |
509 |
includes = env['python_path'] |
env_mpi = conf.Finish() |
510 |
env.Append(CPPPATH = [includes,]) |
env_mpi.Append(CPPDEFINES = ['USE_PARMETIS']) |
|
except KeyError: |
|
|
pass |
|
|
try: |
|
|
lib_path = env['python_lib_path'] |
|
|
env['ENV']['LD_LIBRARY_PATH']+=":"+lib_path |
|
|
env.Append(LIBPATH = [lib_path,]) |
|
|
except KeyError: |
|
|
pass |
|
|
try: |
|
|
python_lib = env['python_lib'] |
|
|
except KeyError: |
|
|
python_lib = None |
|
|
# =============== documentation ======================================= |
|
|
try: |
|
|
doxygen_path = env['doxygen_path'] |
|
|
except KeyError: |
|
|
doxygen_path = None |
|
|
try: |
|
|
epydoc_path = env['epydoc_path'] |
|
|
except KeyError: |
|
|
epydoc_path = None |
|
|
# =============== PAPI ======================================= |
|
|
try: |
|
|
includes = env['papi_path'] |
|
|
env.Append(CPPPATH = [includes,]) |
|
|
except KeyError: |
|
|
pass |
|
|
try: |
|
|
lib_path = env['papi_lib_path'] |
|
|
env.Append(LIBPATH = [lib_path,]) |
|
|
except KeyError: |
|
|
pass |
|
|
try: |
|
|
papi_libs = env['papi_libs'] |
|
|
except KeyError: |
|
|
papi_libs = None |
|
|
# ============= set mpi ===================================== |
|
|
if useMPI: |
|
|
env.Append(CPPDEFINES=['PASO_MPI',]) |
|
|
try: |
|
|
includes = env['mpi_path'] |
|
|
env.Append(CPPPATH = [includes,]) |
|
|
except KeyError: |
|
|
pass |
|
|
try: |
|
|
lib_path = env['mpi_lib_path'] |
|
|
env.Append(LIBPATH = [lib_path,]) |
|
|
env['ENV']['LD_LIBRARY_PATH']+=":"+lib_path |
|
|
except KeyError: |
|
|
pass |
|
|
try: |
|
|
mpi_libs = env['mpi_libs'] |
|
|
except KeyError: |
|
|
mpi_libs = [] |
|
|
|
|
|
try: |
|
|
mpi_run = env['mpi_run'] |
|
|
except KeyError: |
|
|
mpi_run = '' |
|
|
|
|
|
try: |
|
|
mpich_ignore_cxx_seek=env['MPICH_IGNORE_CXX_SEEK'] |
|
|
env.Append(CPPDEFINES = [ mpich_ignore_cxx_seek ] ) |
|
|
except KeyError: |
|
|
pass |
|
511 |
else: |
else: |
512 |
mpi_libs=[] |
conf.Finish() |
|
mpi_run = mpi_run_default |
|
|
# =========== zip files =========================================== |
|
|
try: |
|
|
includes = env['papi_path'] |
|
|
env.Append(CPPPATH = [includes,]) |
|
|
except KeyError: |
|
|
pass |
|
|
try: |
|
|
lib_path = env['papi_lib_path'] |
|
|
env.Append(LIBPATH = [lib_path,]) |
|
|
except KeyError: |
|
|
pass |
|
|
try: |
|
|
papi_libs = env['papi_libs'] |
|
|
except KeyError: |
|
|
papi_libs = None |
|
|
try: |
|
|
papi_instrument_solver = env['papi_instrument_solver'] |
|
|
except KeyError: |
|
|
papi_instrument_solver = None |
|
513 |
|
|
514 |
|
env['useparmetis'] = env_mpi['useparmetis'] |
515 |
|
|
516 |
# ============= and some helpers ===================================== |
############ Now we switch on Warnings as errors ############### |
|
try: |
|
|
doxygen_path = env['doxygen_path'] |
|
|
except KeyError: |
|
|
doxygen_path = None |
|
|
try: |
|
|
epydoc_path = env['epydoc_path'] |
|
|
except KeyError: |
|
|
epydoc_path = None |
|
|
try: |
|
|
src_zipfile = env.File(env['src_zipfile']) |
|
|
except KeyError: |
|
|
src_zipfile = None |
|
|
try: |
|
|
test_zipfile = env.File(env['test_zipfile']) |
|
|
except KeyError: |
|
|
test_zipfile = None |
|
|
try: |
|
|
examples_zipfile = env.File(env['examples_zipfile']) |
|
|
except KeyError: |
|
|
examples_zipfile = None |
|
517 |
|
|
518 |
try: |
#this needs to be done after configuration because the scons test files have warnings in them |
|
src_tarfile = env.File(env['src_tarfile']) |
|
|
except KeyError: |
|
|
src_tarfile = None |
|
|
try: |
|
|
test_tarfile = env.File(env['test_tarfile']) |
|
|
except KeyError: |
|
|
test_tarfile = None |
|
|
try: |
|
|
examples_tarfile = env.File(env['examples_tarfile']) |
|
|
except KeyError: |
|
|
examples_tarfile = None |
|
519 |
|
|
520 |
try: |
if ((fatalwarning != "") and (env['usewarnings'])): |
521 |
guide_pdf = env.File(env['guide_pdf']) |
env.Append(CCFLAGS = fatalwarning) |
522 |
except KeyError: |
env_mpi.Append(CCFLAGS = fatalwarning) |
|
guide_pdf = None |
|
523 |
|
|
524 |
try: |
############ Summarize our environment ######################### |
|
guide_html_index = env.File('index.htm',env['guide_html']) |
|
|
except KeyError: |
|
|
guide_html_index = None |
|
525 |
|
|
526 |
try: |
print "" |
527 |
api_epydoc = env.Dir(env['api_epydoc']) |
print "Summary of configuration (see ./config.log for information)" |
528 |
except KeyError: |
print " Using python libraries" |
529 |
api_epydoc = None |
print " Using numarray" |
530 |
|
print " Using boost" |
531 |
|
if env['usenetcdf']: print " Using NetCDF" |
532 |
|
else: print " Not using NetCDF" |
533 |
|
if env['usevtk']: print " Using VTK" |
534 |
|
else: print " Not using VTK" |
535 |
|
if env['usemkl']: print " Using MKL" |
536 |
|
else: print " Not using MKL" |
537 |
|
if env['useumfpack']: print " Using UMFPACK" |
538 |
|
else: print " Not using UMFPACK" |
539 |
|
if env['useopenmp']: print " Using OpenMP" |
540 |
|
else: print " Not using OpenMP" |
541 |
|
if env['usempi']: print " Using MPI" |
542 |
|
else: print " Not using MPI" |
543 |
|
if env['useparmetis']: print " Using ParMETIS" |
544 |
|
else: print " Not using ParMETIS (requires MPI)" |
545 |
|
if env['usepapi']: print " Using PAPI" |
546 |
|
else: print " Not using PAPI" |
547 |
|
if env['usedebug']: print " Compiling for debug" |
548 |
|
else: print " Not compiling for debug" |
549 |
|
print " Installing in", prefix |
550 |
|
if ((fatalwarning != "") and (env['usewarnings'])): print " Treating warnings as errors" |
551 |
|
else: print " Not treating warnings as errors" |
552 |
|
print "" |
553 |
|
|
554 |
try: |
############ Delete option-dependent files ##################### |
555 |
api_doxygen = env.Dir(env['api_doxygen']) |
|
556 |
except KeyError: |
Execute(Delete(env['libinstall'] + "/Compiled.with.debug")) |
557 |
api_doxygen = None |
Execute(Delete(env['libinstall'] + "/Compiled.with.mpi")) |
558 |
|
Execute(Delete(env['libinstall'] + "/Compiled.with.openmp")) |
559 |
|
if not env['usempi']: Execute(Delete(env['libinstall'] + "/pythonMPI")) |
560 |
|
|
561 |
|
############ Add some custom builders ########################## |
562 |
|
|
563 |
|
py_builder = Builder(action = scons_extensions.build_py, suffix = '.pyc', src_suffix = '.py', single_source=True) |
564 |
|
env.Append(BUILDERS = {'PyCompile' : py_builder}); |
565 |
|
|
566 |
|
runUnitTest_builder = Builder(action = scons_extensions.runUnitTest, suffix = '.passed', src_suffix=env['PROGSUFFIX'], single_source=True) |
567 |
|
env.Append(BUILDERS = {'RunUnitTest' : runUnitTest_builder}); |
568 |
|
|
569 |
|
runPyUnitTest_builder = Builder(action = scons_extensions.runPyUnitTest, suffix = '.passed', src_suffic='.py', single_source=True) |
570 |
|
env.Append(BUILDERS = {'RunPyUnitTest' : runPyUnitTest_builder}); |
571 |
|
|
572 |
|
############ Build the subdirectories ########################## |
573 |
|
|
574 |
|
Export(["env", "env_mpi", "clone_env"]) |
575 |
|
|
|
try: |
|
|
svn_pipe = os.popen("svnversion -n .") |
|
|
global_revision = svn_pipe.readlines() |
|
|
svn_pipe.close() |
|
|
global_revision = re.sub(":.*", "", global_revision[0]) |
|
|
global_revision = re.sub("[^0-9]", "", global_revision) |
|
|
except: |
|
|
global_revision="-1" |
|
|
print "Warning: unable to recover global revsion number." |
|
|
print "Revision number is %s."%global_revision |
|
|
env.Append(CPPDEFINES = "SVN_VERSION="+global_revision) |
|
|
|
|
|
# Python install - esys __init__.py |
|
|
init_target = env.Command(pyinstall+'/__init__.py', None, Touch('$TARGET')) |
|
|
|
|
|
# FIXME: exinstall and friends related to examples are not working. |
|
|
build_target = env.Alias('build',[libinstall,incinstall,pyinstall,init_target]) |
|
|
|
|
|
env.Default(build_target) |
|
|
|
|
|
# Zipgets |
|
|
env.Alias('release_src',[ src_zipfile, src_tarfile ]) |
|
|
env.Alias('release_tests',[ test_zipfile, test_tarfile]) |
|
|
env.Alias('release_examples',[ examples_zipfile, examples_tarfile]) |
|
|
env.Alias('examples_zipfile',examples_zipfile) |
|
|
env.Alias('examples_tarfile',examples_tarfile) |
|
|
env.Alias('api_epydoc',api_epydoc) |
|
|
env.Alias('api_doxygen',api_doxygen) |
|
|
env.Alias('guide_html_index',guide_html_index) |
|
|
env.Alias('guide_pdf', guide_pdf) |
|
|
env.Alias('docs',[ 'release_examples', 'guide_pdf', api_epydoc, api_doxygen, guide_html_index]) |
|
|
env.Alias('release', ['release_src', 'release_tests', 'docs']) |
|
|
|
|
|
env.Alias('build_tests',build_target) # target to build all C++ tests |
|
|
env.Alias('build_py_tests',build_target) # target to build all python tests |
|
|
env.Alias('build_all_tests', [ 'build_tests', 'build_py_tests' ] ) # target to build all python tests |
|
|
env.Alias('run_tests', 'build_tests') # target to run all C++ test |
|
|
env.Alias('py_tests', 'build_py_tests') # taget to run all released python tests |
|
|
env.Alias('all_tests', ['run_tests', 'py_tests']) # target to run all C++ and released python tests |
|
|
|
|
|
|
|
|
# Allow sconscripts to see the env |
|
|
Export(["IS_WINDOWS_PLATFORM", "env", "incinstall", "libinstall", "pyinstall", "dodebug", "mkl_libs", "scsl_libs", "umf_libs", "blas_libs", "netCDF_libs", "useNetCDF", "mpi_run", |
|
|
"boost_lib", "python_lib", "doxygen_path", "epydoc_path", "papi_libs", |
|
|
"sys_libs", "test_zipfile", "src_zipfile", "test_tarfile", "src_tarfile", "examples_tarfile", "examples_zipfile", "trilinos_libs", "mpi_libs", "papi_instrument_solver", |
|
|
"guide_pdf", "guide_html_index", "api_epydoc", "api_doxygen", "useMPI" ]) |
|
|
|
|
|
# End initialisation section |
|
|
# Begin configuration section |
|
|
# adds this file and the scons option directore to the source tar |
|
|
release_srcfiles=[env.File('SConstruct'),env.Dir('lib'),env.Dir('include'),]+[ env.File(x) for x in glob.glob('scons/*.py') ] |
|
|
release_testfiles=[env.File('README_TESTS'),] |
|
|
env.Zip(src_zipfile, release_srcfiles) |
|
|
env.Zip(test_zipfile, release_testfiles) |
|
|
try: |
|
|
env.Tar(src_tarfile, release_srcfiles) |
|
|
env.Tar(test_tarfile, release_testfiles) |
|
|
except AttributeError: |
|
|
pass |
|
|
# Insert new components to be build here |
|
|
# FIXME: might be nice to replace this verbosity with a list of targets and some |
|
|
# FIXME: nifty python to create the lengthy but very similar env.Sconscript lines |
|
|
# Third Party libraries |
|
576 |
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) |
|
# C/C++ Libraries |
|
577 |
env.SConscript(dirs = ['paso/src'], build_dir='build/$PLATFORM/paso', duplicate=0) |
env.SConscript(dirs = ['paso/src'], build_dir='build/$PLATFORM/paso', duplicate=0) |
|
# bruce is removed for now as it doesn't really do anything |
|
|
# env.SConscript(dirs = ['bruce/src'], build_dir='build/$PLATFORM/bruce', duplicate=0) |
|
578 |
env.SConscript(dirs = ['escript/src'], build_dir='build/$PLATFORM/escript', duplicate=0) |
env.SConscript(dirs = ['escript/src'], build_dir='build/$PLATFORM/escript', duplicate=0) |
579 |
env.SConscript(dirs = ['esysUtils/src'], build_dir='build/$PLATFORM/esysUtils', duplicate=0) |
env.SConscript(dirs = ['esysUtils/src'], build_dir='build/$PLATFORM/esysUtils', duplicate=0) |
580 |
env.SConscript(dirs = ['finley/src'], build_dir='build/$PLATFORM/finley', duplicate=0) |
env.SConscript(dirs = ['finley/src'], build_dir='build/$PLATFORM/finley', duplicate=0) |
583 |
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) |
584 |
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) |
585 |
env.SConscript(dirs = ['pythonMPI/src'], build_dir='build/$PLATFORM/pythonMPI', duplicate=0) |
env.SConscript(dirs = ['pythonMPI/src'], build_dir='build/$PLATFORM/pythonMPI', duplicate=0) |
586 |
#env.SConscript(dirs = ['../test'], build_dir='../test/build', duplicate=0) |
env.SConscript(dirs = ['scripts'], build_dir='build/$PLATFORM/scripts', duplicate=0) |
587 |
|
|
588 |
|
############ Remember what optimizations we used ############### |
589 |
|
|
590 |
|
remember_list = [] |
591 |
|
|
592 |
|
if env['usedebug']: |
593 |
|
remember_list += env.Command(env['libinstall'] + "/Compiled.with.debug", None, Touch('$TARGET')) |
594 |
|
|
595 |
|
if env['usempi']: |
596 |
|
remember_list += env.Command(env['libinstall'] + "/Compiled.with.mpi", None, Touch('$TARGET')) |
597 |
|
|
598 |
|
if env['omp_optim'] != '': |
599 |
|
remember_list += env.Command(env['libinstall'] + "/Compiled.with.openmp", None, Touch('$TARGET')) |
600 |
|
|
601 |
|
env.Alias('remember_options', remember_list) |
602 |
|
|
603 |
|
############ Targets to build and install libraries ############ |
604 |
|
|
605 |
|
target_init = env.Command(env['pyinstall']+'/__init__.py', None, Touch('$TARGET')) |
606 |
|
env.Alias('target_init', [target_init]) |
607 |
|
|
608 |
|
# The headers have to be installed prior to build in order to satisfy #include <paso/Common.h> |
609 |
|
env.Alias('build_esysUtils', ['target_install_esysUtils_headers', 'target_esysUtils_a']) |
610 |
|
env.Alias('install_esysUtils', ['build_esysUtils', 'target_install_esysUtils_a']) |
611 |
|
|
612 |
|
env.Alias('build_paso', ['target_install_paso_headers', 'target_paso_a']) |
613 |
|
env.Alias('install_paso', ['build_paso', 'target_install_paso_a']) |
614 |
|
|
615 |
|
env.Alias('build_escript', ['target_install_escript_headers', 'target_escript_so', 'target_escriptcpp_so']) |
616 |
|
env.Alias('install_escript', ['build_escript', 'target_install_escript_so', 'target_install_escriptcpp_so', 'target_install_escript_py']) |
617 |
|
|
618 |
|
env.Alias('build_finley', ['target_install_finley_headers', 'target_finley_so', 'target_finleycpp_so']) |
619 |
|
env.Alias('install_finley', ['build_finley', 'target_install_finley_so', 'target_install_finleycpp_so', 'target_install_finley_py']) |
620 |
|
|
621 |
|
# Now gather all the above into a couple easy targets: build_all and install_all |
622 |
|
build_all_list = [] |
623 |
|
build_all_list += ['build_esysUtils'] |
624 |
|
build_all_list += ['build_paso'] |
625 |
|
build_all_list += ['build_escript'] |
626 |
|
build_all_list += ['build_finley'] |
627 |
|
if env['usempi']: build_all_list += ['target_pythonMPI_exe'] |
628 |
|
if not IS_WINDOWS_PLATFORM: build_all_list += ['target_finley_wrapper'] |
629 |
|
env.Alias('build_all', build_all_list) |
630 |
|
|
631 |
|
install_all_list = [] |
632 |
|
install_all_list += ['target_init'] |
633 |
|
install_all_list += ['install_esysUtils'] |
634 |
|
install_all_list += ['install_paso'] |
635 |
|
install_all_list += ['install_escript'] |
636 |
|
install_all_list += ['install_finley'] |
637 |
|
install_all_list += ['target_install_pyvisi_py'] |
638 |
|
install_all_list += ['target_install_modellib_py'] |
639 |
|
install_all_list += ['target_install_pycad_py'] |
640 |
|
if env['usempi']: install_all_list += ['target_install_pythonMPI_exe'] |
641 |
|
if not IS_WINDOWS_PLATFORM: install_all_list += ['target_install_finley_wrapper'] |
642 |
|
install_all_list += ['remember_options'] |
643 |
|
env.Alias('install_all', install_all_list) |
644 |
|
|
645 |
|
# Default target is install |
646 |
|
env.Default('install_all') |
647 |
|
|
648 |
|
############ Targets to build and run the test suite ########### |
649 |
|
|
650 |
|
env.Alias('build_cppunittest', ['target_install_cppunittest_headers', 'target_cppunittest_a']) |
651 |
|
env.Alias('install_cppunittest', ['build_cppunittest', 'target_install_cppunittest_a']) |
652 |
|
env.Alias('run_tests', ['install_all', 'target_install_cppunittest_a']) |
653 |
|
env.Alias('all_tests', ['install_all', 'target_install_cppunittest_a', 'run_tests', 'py_tests']) |
654 |
|
|
655 |
|
############ Targets to build the documentation ################ |
656 |
|
|
657 |
syslib_install_target = env.installDirectory(sys_libinstall,libinstall) |
env.Alias('docs', ['examples_tarfile', 'examples_zipfile', 'api_epydoc', 'api_doxygen', 'guide_pdf', 'guide_html']) |
|
syspy_install_target = env.installDirectory(sys_pyinstall,pyinstall,recursive=True) |
|
658 |
|
|
|
install_target = env.Alias("install", env.Flatten([syslib_install_target, syspy_install_target]) ) |
|