1 |
|
|
2 |
######################################################## |
######################################################## |
3 |
# |
# |
4 |
# Copyright (c) 2003-2008 by University of Queensland |
# Copyright (c) 2003-2009 by University of Queensland |
5 |
# Earth Systems Science Computational Center (ESSCC) |
# Earth Systems Science Computational Center (ESSCC) |
6 |
# http://www.uq.edu.au/esscc |
# http://www.uq.edu.au/esscc |
7 |
# |
# |
16 |
EnsurePythonVersion(2,3) |
EnsurePythonVersion(2,3) |
17 |
|
|
18 |
import sys, os, re, socket, platform, stat |
import sys, os, re, socket, platform, stat |
19 |
|
# For copy() |
20 |
|
import shutil |
21 |
|
|
22 |
# Add our extensions |
# Add our extensions |
23 |
if os.path.isdir('scons'): sys.path.append('scons') |
if os.path.isdir('scons'): sys.path.append('scons') |
35 |
|
|
36 |
prefix = ARGUMENTS.get('prefix', Dir('#.').abspath) |
prefix = ARGUMENTS.get('prefix', Dir('#.').abspath) |
37 |
|
|
38 |
# Read configuration options from file scons/<hostname>_options.py |
#Holds names of variables from the calling environment which need to be passed |
39 |
hostname = re.sub("[^0-9a-zA-Z]", "_", socket.gethostname().split('.')[0]) |
#to tools |
40 |
tmp = os.path.join("scons",hostname+"_options.py") |
env_export=[] |
41 |
options_file = ARGUMENTS.get('options_file', tmp) |
|
42 |
|
#Determine where to read options from use: |
43 |
|
#1. command line |
44 |
|
#2. scons/<hostname>_options.py |
45 |
|
#3. name as part of a cluster |
46 |
|
options_file=ARGUMENTS.get('options_file', None) |
47 |
|
effective_hostname=socket.gethostname().split('.')[0] |
48 |
|
if not options_file: |
49 |
|
mangledhostname = re.sub("[^0-9a-zA-Z]", "_", effective_hostname) |
50 |
|
options_file = os.path.join("scons",mangledhostname+"_options.py") |
51 |
|
#If there is no options file with that name see if there is a substitute |
52 |
|
if not os.path.isfile(options_file): |
53 |
|
effective_hostname = scons_extensions.effectiveName(effective_hostname) |
54 |
|
mangledhostname = re.sub("[^0-9a-zA-Z]", "_", effective_hostname) |
55 |
|
options_file = os.path.join("scons",mangledhostname+"_options.py") |
56 |
|
|
57 |
if not os.path.isfile(options_file): |
if not os.path.isfile(options_file): |
58 |
|
print "Options file not found (expected '%s')" % options_file |
59 |
options_file = False |
options_file = False |
|
print "Options file not found (expected '%s')" % tmp |
|
60 |
else: |
else: |
61 |
print "Options file is", options_file |
print "Options file is", options_file |
62 |
|
|
63 |
# Load options file and command-line arguments |
#Does our scons support the newer Variables class or do we need to use Options? |
64 |
opts = Options(options_file, ARGUMENTS) |
|
65 |
|
try: |
66 |
|
dummyvar=Variables |
67 |
|
opts = Variables(options_file, ARGUMENTS) |
68 |
|
adder = opts.AddVariables |
69 |
|
except: |
70 |
|
opts = Options(options_file, ARGUMENTS) |
71 |
|
adder = opts.AddOptions |
72 |
|
BoolVariable = BoolOption |
73 |
|
|
74 |
############ Load build options ################################ |
############ Load build options ################################ |
75 |
|
|
76 |
opts.AddOptions( |
adder( |
77 |
|
#opts.AddOptions( |
78 |
# Where to install esys stuff |
# Where to install esys stuff |
79 |
('prefix', 'where everything will be installed', Dir('#.').abspath), |
('prefix', 'where everything will be installed', Dir('#.').abspath), |
80 |
('incinstall', 'where the esys headers will be installed', os.path.join(Dir('#.').abspath,'include')), |
('incinstall', 'where the esys headers will be installed', os.path.join(Dir('#.').abspath,'include')), |
82 |
('libinstall', 'where the esys libraries will be installed', os.path.join(prefix,'lib')), |
('libinstall', 'where the esys libraries will be installed', os.path.join(prefix,'lib')), |
83 |
('pyinstall', 'where the esys python modules will be installed', os.path.join(prefix,'esys')), |
('pyinstall', 'where the esys python modules will be installed', os.path.join(prefix,'esys')), |
84 |
# Compilation options |
# Compilation options |
85 |
BoolOption('dodebug', 'For backwards compatibility', 'no'), |
BoolVariable('dodebug', 'For backwards compatibility', 'no'), |
86 |
BoolOption('usedebug', 'Do you want a debug build?', 'no'), |
BoolVariable('usedebug', 'Do you want a debug build?', 'no'), |
87 |
BoolOption('usevtk', 'Do you want to use VTK?', 'yes'), |
BoolVariable('usevtk', 'Do you want to use VTK?', 'yes'), |
88 |
('options_file', 'File of paths/options. Default: scons/<hostname>_options.py', options_file), |
('options_file', 'File of paths/options. Default: scons/<hostname>_options.py', options_file), |
89 |
('win_cc_name', 'windows C compiler name if needed', 'msvc'), |
('win_cc_name', 'windows C compiler name if needed', 'msvc'), |
90 |
# The strings -DDEFAULT_ get replaced by scons/<hostname>_options.py or by defaults below |
# The strings -DDEFAULT_ get replaced by scons/<hostname>_options.py or by defaults below |
98 |
('ld_extra', 'Extra linker flags', ''), |
('ld_extra', 'Extra linker flags', ''), |
99 |
('sys_libs', 'System libraries to link with', []), |
('sys_libs', 'System libraries to link with', []), |
100 |
('ar_flags', 'Static library archiver flags to use', ''), |
('ar_flags', 'Static library archiver flags to use', ''), |
101 |
BoolOption('useopenmp', 'Compile parallel version using OpenMP', 'no'), |
BoolVariable('useopenmp', 'Compile parallel version using OpenMP', 'no'), |
102 |
BoolOption('usepedantic', 'Compile with -pedantic if using gcc', 'no'), |
BoolVariable('usepedantic', 'Compile with -pedantic if using gcc', 'no'), |
103 |
BoolOption('usewarnings','Compile with warnings as errors if using gcc','yes'), |
BoolVariable('usewarnings','Compile with warnings as errors if using gcc','yes'), |
104 |
('forcelazy','for testing use only - set the default value for autolazy','leave_alone'), |
('forcelazy','for testing use only - set the default value for autolazy','leave_alone'), |
105 |
|
('forcecollres','for testing use only - set the default value for force resolving collective ops','leave_alone'), |
106 |
# Python |
# Python |
107 |
('python_path', 'Path to Python includes', '/usr/include/'+python_version), |
('python_path', 'Path to Python includes', '/usr/include/'+python_version), |
108 |
('python_lib_path', 'Path to Python libs', usr_lib), |
('python_lib_path', 'Path to Python libs', usr_lib), |
113 |
('boost_lib_path', 'Path to Boost libs', usr_lib), |
('boost_lib_path', 'Path to Boost libs', usr_lib), |
114 |
('boost_libs', 'Boost libraries to link with', ['boost_python']), |
('boost_libs', 'Boost libraries to link with', ['boost_python']), |
115 |
# NetCDF |
# NetCDF |
116 |
BoolOption('usenetcdf', 'switch on/off the usage of netCDF', 'yes'), |
BoolVariable('usenetcdf', 'switch on/off the usage of netCDF', 'yes'), |
117 |
('netCDF_path', 'Path to netCDF includes', '/usr/include'), |
('netCDF_path', 'Path to netCDF includes', '/usr/include'), |
118 |
('netCDF_lib_path', 'Path to netCDF libs', usr_lib), |
('netCDF_lib_path', 'Path to netCDF libs', usr_lib), |
119 |
('netCDF_libs', 'netCDF C++ libraries to link with', ['netcdf_c++', 'netcdf']), |
('netCDF_libs', 'netCDF C++ libraries to link with', ['netcdf_c++', 'netcdf']), |
120 |
# MPI |
# MPI |
121 |
BoolOption('useMPI', 'For backwards compatibility', 'no'), |
BoolVariable('useMPI', 'For backwards compatibility', 'no'), |
122 |
BoolOption('usempi', 'Compile parallel version using MPI', 'no'), |
BoolVariable('usempi', 'Compile parallel version using MPI', 'no'), |
123 |
('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'), |
124 |
('mpi_path', 'Path to MPI includes', '/usr/include'), |
('mpi_path', 'Path to MPI includes', '/usr/include'), |
125 |
('mpi_run', 'mpirun name' , 'mpiexec -np 1'), |
('mpi_run', 'mpirun name' , 'mpiexec -np 1'), |
126 |
('mpi_lib_path', 'Path to MPI libs (needs to be added to the LD_LIBRARY_PATH)', usr_lib), |
('mpi_lib_path', 'Path to MPI libs (needs to be added to the LD_LIBRARY_PATH)', usr_lib), |
127 |
('mpi_libs', 'MPI libraries to link with (needs to be shared!)', ['mpich' , 'pthread', 'rt']), |
('mpi_libs', 'MPI libraries to link with (needs to be shared!)', []), |
128 |
('mpi_flavour','Type of MPI execution environment','none'), |
('mpi_flavour','Type of MPI execution environment','none'), |
129 |
# ParMETIS |
# ParMETIS |
130 |
BoolOption('useparmetis', 'Compile parallel version using ParMETIS', 'yes'), |
BoolVariable('useparmetis', 'Compile parallel version using ParMETIS', 'yes'), |
131 |
('parmetis_path', 'Path to ParMETIS includes', '/usr/include'), |
('parmetis_path', 'Path to ParMETIS includes', '/usr/include'), |
132 |
('parmetis_lib_path', 'Path to ParMETIS library', usr_lib), |
('parmetis_lib_path', 'Path to ParMETIS library', usr_lib), |
133 |
('parmetis_libs', 'ParMETIS library to link with', ['parmetis', 'metis']), |
('parmetis_libs', 'ParMETIS library to link with', ['parmetis', 'metis']), |
134 |
# PAPI |
# PAPI |
135 |
BoolOption('usepapi', 'switch on/off the usage of PAPI', 'no'), |
BoolVariable('usepapi', 'switch on/off the usage of PAPI', 'no'), |
136 |
('papi_path', 'Path to PAPI includes', '/usr/include'), |
('papi_path', 'Path to PAPI includes', '/usr/include'), |
137 |
('papi_lib_path', 'Path to PAPI libs', usr_lib), |
('papi_lib_path', 'Path to PAPI libs', usr_lib), |
138 |
('papi_libs', 'PAPI libraries to link with', ['papi']), |
('papi_libs', 'PAPI libraries to link with', ['papi']), |
139 |
BoolOption('papi_instrument_solver', 'use PAPI in Solver.c to instrument each iteration of the solver', False), |
BoolVariable('papi_instrument_solver', 'use PAPI in Solver.c to instrument each iteration of the solver', False), |
140 |
# MKL |
# MKL |
141 |
BoolOption('usemkl', 'switch on/off the usage of MKL', 'no'), |
BoolVariable('usemkl', 'switch on/off the usage of MKL', 'no'), |
142 |
('mkl_path', 'Path to MKL includes', '/sw/sdev/cmkl/10.0.2.18/include'), |
('mkl_path', 'Path to MKL includes', '/sw/sdev/cmkl/10.0.2.18/include'), |
143 |
('mkl_lib_path', 'Path to MKL libs', '/sw/sdev/cmkl/10.0.2.18/lib/em64t'), |
('mkl_lib_path', 'Path to MKL libs', '/sw/sdev/cmkl/10.0.2.18/lib/em64t'), |
144 |
('mkl_libs', 'MKL libraries to link with', ['mkl_solver', 'mkl_em64t', 'guide', 'pthread']), |
('mkl_libs', 'MKL libraries to link with', ['mkl_solver', 'mkl_em64t', 'guide', 'pthread']), |
145 |
# UMFPACK |
# UMFPACK |
146 |
BoolOption('useumfpack', 'switch on/off the usage of UMFPACK', 'no'), |
BoolVariable('useumfpack', 'switch on/off the usage of UMFPACK', 'no'), |
147 |
('ufc_path', 'Path to UFconfig includes', '/usr/include/suitesparse'), |
('ufc_path', 'Path to UFconfig includes', '/usr/include/suitesparse'), |
148 |
('umf_path', 'Path to UMFPACK includes', '/usr/include/suitesparse'), |
('umf_path', 'Path to UMFPACK includes', '/usr/include/suitesparse'), |
149 |
('umf_lib_path', 'Path to UMFPACK libs', usr_lib), |
('umf_lib_path', 'Path to UMFPACK libs', usr_lib), |
150 |
('umf_libs', 'UMFPACK libraries to link with', ['umfpack']), |
('umf_libs', 'UMFPACK libraries to link with', ['umfpack']), |
151 |
# Silo |
# Silo |
152 |
BoolOption('usesilo', 'switch on/off the usage of Silo', 'yes'), |
BoolVariable('usesilo', 'switch on/off the usage of Silo', 'yes'), |
153 |
('silo_path', 'Path to Silo includes', '/usr/include'), |
('silo_path', 'Path to Silo includes', '/usr/include'), |
154 |
('silo_lib_path', 'Path to Silo libs', usr_lib), |
('silo_lib_path', 'Path to Silo libs', usr_lib), |
155 |
('silo_libs', 'Silo libraries to link with', ['siloh5', 'hdf5']), |
('silo_libs', 'Silo libraries to link with', ['siloh5', 'hdf5']), |
166 |
# finer control over library building, intel aggressive global optimisation |
# finer control over library building, intel aggressive global optimisation |
167 |
# works with dynamic libraries on windows. |
# works with dynamic libraries on windows. |
168 |
('share_esysUtils', 'control static or dynamic esysUtils lib', False), |
('share_esysUtils', 'control static or dynamic esysUtils lib', False), |
169 |
('share_paso', 'control static or dynamic paso lib', False) |
('share_paso', 'control static or dynamic paso lib', False), |
170 |
|
('env_export','Environment variables to be passed to children',[]) |
171 |
) |
) |
172 |
|
|
173 |
|
|
174 |
|
|
175 |
############ Specify which compilers to use #################### |
############ Specify which compilers to use #################### |
176 |
|
|
177 |
# intelc uses regular expressions improperly and emits a warning about |
# intelc uses regular expressions improperly and emits a warning about |
182 |
env = Environment(tools = ['default'] + env['tools_names'], |
env = Environment(tools = ['default'] + env['tools_names'], |
183 |
options = opts) |
options = opts) |
184 |
else: |
else: |
185 |
if socket.gethostname().split('.')[0] == 'service0': |
if effective_hostname == 'service0': |
186 |
env = Environment(tools = ['default', 'intelc'], options = opts) |
env = Environment(tools = ['default', 'intelc'], options = opts) |
187 |
elif os.uname()[4]=='ia64': |
elif os.uname()[4]=='ia64': |
188 |
env = Environment(tools = ['default', 'intelc'], options = opts) |
env = Environment(tools = ['default', 'intelc'], options = opts) |
192 |
env = Environment(tools = ['default'], options = opts) |
env = Environment(tools = ['default'], options = opts) |
193 |
Help(opts.GenerateHelpText(env)) |
Help(opts.GenerateHelpText(env)) |
194 |
|
|
195 |
|
|
196 |
|
############ Make sure target directories exist ################ |
197 |
|
|
198 |
|
if not os.path.isdir(env['bininstall']): |
199 |
|
os.makedirs(env['bininstall']) |
200 |
|
if not os.path.isdir(env['libinstall']): |
201 |
|
os.makedirs(env['libinstall']) |
202 |
|
if not os.path.isdir(env['pyinstall']): |
203 |
|
os.makedirs(env['pyinstall']) |
204 |
|
|
205 |
|
########## Copy required environment vars ###################### |
206 |
|
|
207 |
|
for i in env['env_export']: |
208 |
|
env.Append(ENV = {i:os.environ[i]}) |
209 |
|
|
210 |
############ Fill in compiler options if not set above ######### |
############ Fill in compiler options if not set above ######### |
211 |
|
|
212 |
# Backwards compatibility: allow dodebug=yes and useMPI=yes |
# Backwards compatibility: allow dodebug=yes and useMPI=yes |
237 |
cc_debug = "-g -O0 -DDOASSERT -DDOPROF -DBOUNDS_CHECK" |
cc_debug = "-g -O0 -DDOASSERT -DDOPROF -DBOUNDS_CHECK" |
238 |
omp_optim = "-fopenmp" |
omp_optim = "-fopenmp" |
239 |
omp_debug = "-fopenmp" |
omp_debug = "-fopenmp" |
240 |
omp_libs = ['gomp'] |
omp_libs = [] |
241 |
pedantic = "-pedantic-errors -Wno-long-long" |
pedantic = "-pedantic-errors -Wno-long-long" |
242 |
fatalwarning = "-Werror" |
fatalwarning = "-Werror" |
243 |
sysheaderopt = "-isystem " |
sysheaderopt = "-isystem " |
270 |
#set up the autolazy values |
#set up the autolazy values |
271 |
if env['forcelazy'] != "leave_alone": |
if env['forcelazy'] != "leave_alone": |
272 |
if env['forcelazy'] == 'on': |
if env['forcelazy'] == 'on': |
273 |
env.Append(CPPDEFINES='FAUTOLAZYON') |
env.Append(CPPDEFINES=['FAUTOLAZYON']) |
274 |
else: |
else: |
275 |
if env['forcelazy'] == 'off': |
if env['forcelazy'] == 'off': |
276 |
env.Append(CPPDEFINES='FAUTOLAZYOFF') |
env.Append(CPPDEFINES=['FAUTOLAZYOFF']) |
277 |
|
|
278 |
|
#set up the colective resolve values |
279 |
|
if env['forcecollres'] != "leave_alone": |
280 |
|
print env['forcecollres'] |
281 |
|
if env['forcecollres'] == 'on': |
282 |
|
env.Append(CPPDEFINES=['FRESCOLLECTON']) |
283 |
|
else: |
284 |
|
if env['forcecollres'] == 'off': |
285 |
|
env.Append(CPPDEFINES=['FRESCOLLECTOFF']) |
286 |
|
|
287 |
|
|
288 |
# OpenMP is disabled if useopenmp=no or both variables omp_optim and omp_debug are empty |
# OpenMP is disabled if useopenmp=no or both variables omp_optim and omp_debug are empty |
289 |
if not env["useopenmp"]: |
if not env["useopenmp"]: |
293 |
|
|
294 |
if env['omp_optim'] == "" and env['omp_debug'] == "": env["useopenmp"] = 0 |
if env['omp_optim'] == "" and env['omp_debug'] == "": env["useopenmp"] = 0 |
295 |
|
|
296 |
|
# Windows doesn't use LD_LIBRARY_PATH but PATH instead |
297 |
|
if IS_WINDOWS_PLATFORM: |
298 |
|
LD_LIBRARY_PATH_KEY='PATH' |
299 |
|
env['ENV']['LD_LIBRARY_PATH']='' |
300 |
|
else: |
301 |
|
LD_LIBRARY_PATH_KEY='LD_LIBRARY_PATH' |
302 |
############ Copy environment variables into scons env ######### |
############ Copy environment variables into scons env ######### |
303 |
|
|
304 |
try: env['ENV']['OMP_NUM_THREADS'] = os.environ['OMP_NUM_THREADS'] |
try: env['ENV']['OMP_NUM_THREADS'] = os.environ['OMP_NUM_THREADS'] |
305 |
except KeyError: env['ENV']['OMP_NUM_THREADS'] = 1 |
except KeyError: env['ENV']['OMP_NUM_THREADS'] = 1 |
306 |
|
|
307 |
|
try: env['ENV']['ESCRIPT_NUM_THREADS'] = os.environ['ESCRIPT_NUM_THREADS'] |
308 |
|
except KeyError: pass |
309 |
|
|
310 |
|
try: env['ENV']['ESCRIPT_NUM_PROCS'] = os.environ['ESCRIPT_NUM_PROCS'] |
311 |
|
except KeyError: env['ENV']['ESCRIPT_NUM_PROCS']=1 |
312 |
|
|
313 |
|
try: env['ENV']['ESCRIPT_NUM_NODES'] = os.environ['ESCRIPT_NUM_NODES'] |
314 |
|
except KeyError: env['ENV']['ESCRIPT_NUM_NODES']=1 |
315 |
|
|
316 |
|
try: env['ENV']['ESCRIPT_HOSTFILE'] = os.environ['ESCRIPT_HOSTFILE'] |
317 |
|
except KeyError: pass |
318 |
|
|
319 |
try: env['ENV']['PATH'] = os.environ['PATH'] |
try: env['ENV']['PATH'] = os.environ['PATH'] |
320 |
except KeyError: pass |
except KeyError: pass |
321 |
|
|
328 |
try: env['ENV']['CPLUS_INCLUDE_PATH'] = os.environ['CPLUS_INCLUDE_PATH'] |
try: env['ENV']['CPLUS_INCLUDE_PATH'] = os.environ['CPLUS_INCLUDE_PATH'] |
329 |
except KeyError: pass |
except KeyError: pass |
330 |
|
|
331 |
try: env['ENV']['LD_LIBRARY_PATH'] = os.environ['LD_LIBRARY_PATH'] |
try: env.PrependENVPath(LD_LIBRARY_PATH_KEY,os.environ['LD_LIBRARY_PATH']) |
332 |
except KeyError: pass |
except KeyError: pass |
333 |
|
|
334 |
try: env['ENV']['LIBRARY_PATH'] = os.environ['LIBRARY_PATH'] |
try: env['ENV']['LIBRARY_PATH'] = os.environ['LIBRARY_PATH'] |
344 |
except KeyError: pass |
except KeyError: pass |
345 |
|
|
346 |
# Configure for test suite |
# Configure for test suite |
|
env.PrependENVPath('PYTHONPATH', prefix) |
|
|
env.PrependENVPath('LD_LIBRARY_PATH', env['libinstall']) |
|
347 |
|
|
348 |
|
|
349 |
|
env.PrependENVPath(LD_LIBRARY_PATH_KEY, env['libinstall']) |
350 |
|
env.PrependENVPath('PYTHONPATH', prefix) |
351 |
env['ENV']['ESCRIPT_ROOT'] = prefix |
env['ENV']['ESCRIPT_ROOT'] = prefix |
352 |
|
|
353 |
############ Set up paths for Configure() ###################### |
############ Set up paths for Configure() ###################### |
393 |
if global_revision == "": global_revision="-2" |
if global_revision == "": global_revision="-2" |
394 |
env.Append(CPPDEFINES = ["SVN_VERSION="+global_revision]) |
env.Append(CPPDEFINES = ["SVN_VERSION="+global_revision]) |
395 |
|
|
396 |
############ numarray (required) ############################### |
############ numpy (required) ############################### |
397 |
|
|
398 |
try: |
try: |
399 |
from numarray import identity |
from numpy import identity |
400 |
except ImportError: |
except ImportError: |
401 |
print "Cannot import numarray, you need to set your PYTHONPATH" |
print "Cannot import numpy, you need to set your PYTHONPATH" |
402 |
sys.exit(1) |
sys.exit(1) |
403 |
|
|
404 |
############ C compiler (required) ############################# |
############ C compiler (required) ############################# |
425 |
conf.env.AppendUnique(LIBPATH = [env['python_lib_path']]) |
conf.env.AppendUnique(LIBPATH = [env['python_lib_path']]) |
426 |
conf.env.AppendUnique(LIBS = [env['python_libs']]) |
conf.env.AppendUnique(LIBS = [env['python_libs']]) |
427 |
|
|
|
conf.env.PrependENVPath('LD_LIBRARY_PATH', env['python_lib_path']) # The wrapper script needs to find these libs |
|
428 |
conf.env.PrependENVPath('PYTHONPATH', prefix) |
conf.env.PrependENVPath('PYTHONPATH', prefix) |
429 |
conf.env.PrependENVPath('LD_LIBRARY_PATH', env['libinstall']) |
conf.env.PrependENVPath(LD_LIBRARY_PATH_KEY, env['python_lib_path']) # The wrapper script needs to find these libs |
430 |
|
conf.env.PrependENVPath(LD_LIBRARY_PATH_KEY, env['libinstall']) |
431 |
|
|
432 |
if not conf.CheckCHeader('Python.h'): |
if not conf.CheckCHeader('Python.h'): |
433 |
print "Cannot find python include files (tried 'Python.h' in directory %s)" % (env['python_path']) |
print "Cannot find python include files (tried 'Python.h' in directory %s)" % (env['python_path']) |
450 |
conf.env.AppendUnique(LIBPATH = [env['boost_lib_path']]) |
conf.env.AppendUnique(LIBPATH = [env['boost_lib_path']]) |
451 |
conf.env.AppendUnique(LIBS = [env['boost_libs']]) |
conf.env.AppendUnique(LIBS = [env['boost_libs']]) |
452 |
|
|
453 |
conf.env.PrependENVPath('LD_LIBRARY_PATH', env['boost_lib_path']) # The wrapper script needs to find these libs |
conf.env.PrependENVPath(LD_LIBRARY_PATH_KEY, env['boost_lib_path']) # The wrapper script needs to find these libs |
454 |
#ensure that our path entries remain at the front |
#ensure that our path entries remain at the front |
455 |
conf.env.PrependENVPath('PYTHONPATH', prefix) |
conf.env.PrependENVPath('PYTHONPATH', prefix) |
456 |
conf.env.PrependENVPath('LD_LIBRARY_PATH', env['libinstall']) |
conf.env.PrependENVPath(LD_LIBRARY_PATH_KEY, env['libinstall']) |
457 |
|
|
458 |
if not conf.CheckCXXHeader('boost/python.hpp'): |
if not conf.CheckCXXHeader('boost/python.hpp'): |
459 |
print "Cannot find boost include files (tried boost/python.hpp in directory %s)" % (env['boost_path']) |
print "Cannot find boost include files (tried boost/python.hpp in directory %s)" % (env['boost_path']) |
487 |
conf.env.AppendUnique(CPPPATH = [env['netCDF_path']]) |
conf.env.AppendUnique(CPPPATH = [env['netCDF_path']]) |
488 |
conf.env.AppendUnique(LIBPATH = [env['netCDF_lib_path']]) |
conf.env.AppendUnique(LIBPATH = [env['netCDF_lib_path']]) |
489 |
conf.env.AppendUnique(LIBS = [env['netCDF_libs']]) |
conf.env.AppendUnique(LIBS = [env['netCDF_libs']]) |
490 |
conf.env.PrependENVPath('LD_LIBRARY_PATH', env['netCDF_lib_path']) # The wrapper script needs to find these libs |
conf.env.PrependENVPath(LD_LIBRARY_PATH_KEY, env['netCDF_lib_path']) # The wrapper script needs to find these libs |
491 |
#ensure that our path entries remain at the front |
#ensure that our path entries remain at the front |
492 |
conf.env.PrependENVPath('PYTHONPATH', prefix) |
conf.env.PrependENVPath('PYTHONPATH', prefix) |
493 |
conf.env.PrependENVPath('LD_LIBRARY_PATH', env['libinstall']) |
conf.env.PrependENVPath(LD_LIBRARY_PATH_KEY, env['libinstall']) |
494 |
|
|
495 |
if env['usenetcdf'] and not conf.CheckCHeader('netcdf.h'): env['usenetcdf'] = 0 |
if env['usenetcdf'] and not conf.CheckCHeader('netcdf.h'): env['usenetcdf'] = 0 |
496 |
if env['usenetcdf'] and not conf.CheckFunc('nc_open'): env['usenetcdf'] = 0 |
if env['usenetcdf'] and not conf.CheckFunc('nc_open'): env['usenetcdf'] = 0 |
511 |
conf.env.AppendUnique(CPPPATH = [env['papi_path']]) |
conf.env.AppendUnique(CPPPATH = [env['papi_path']]) |
512 |
conf.env.AppendUnique(LIBPATH = [env['papi_lib_path']]) |
conf.env.AppendUnique(LIBPATH = [env['papi_lib_path']]) |
513 |
conf.env.AppendUnique(LIBS = [env['papi_libs']]) |
conf.env.AppendUnique(LIBS = [env['papi_libs']]) |
514 |
conf.env.PrependENVPath('LD_LIBRARY_PATH', env['papi_lib_path']) # The wrapper script needs to find these libs |
conf.env.PrependENVPath(LD_LIBRARY_PATH_KEY, env['papi_lib_path']) # The wrapper script needs to find these libs |
515 |
#ensure that our path entries remain at the front |
#ensure that our path entries remain at the front |
516 |
conf.env.PrependENVPath('PYTHONPATH', prefix) |
conf.env.PrependENVPath('PYTHONPATH', prefix) |
517 |
conf.env.PrependENVPath('LD_LIBRARY_PATH', env['libinstall']) |
conf.env.PrependENVPath(LD_LIBRARY_PATH_KEY, env['libinstall']) |
518 |
|
|
519 |
if env['usepapi'] and not conf.CheckCHeader('papi.h'): env['usepapi'] = 0 |
if env['usepapi'] and not conf.CheckCHeader('papi.h'): env['usepapi'] = 0 |
520 |
if env['usepapi'] and not conf.CheckFunc('PAPI_start_counters'): env['usepapi'] = 0 |
if env['usepapi'] and not conf.CheckFunc('PAPI_start_counters'): env['usepapi'] = 0 |
535 |
conf.env.AppendUnique(CPPPATH = [env['mkl_path']]) |
conf.env.AppendUnique(CPPPATH = [env['mkl_path']]) |
536 |
conf.env.AppendUnique(LIBPATH = [env['mkl_lib_path']]) |
conf.env.AppendUnique(LIBPATH = [env['mkl_lib_path']]) |
537 |
conf.env.AppendUnique(LIBS = [env['mkl_libs']]) |
conf.env.AppendUnique(LIBS = [env['mkl_libs']]) |
538 |
conf.env.PrependENVPath('LD_LIBRARY_PATH', env['mkl_lib_path']) # The wrapper script needs to find these libs |
conf.env.PrependENVPath(LD_LIBRARY_PATH_KEY, env['mkl_lib_path']) # The wrapper script needs to find these libs |
539 |
#ensure that our path entries remain at the front |
#ensure that our path entries remain at the front |
540 |
conf.env.PrependENVPath('PYTHONPATH', prefix) |
conf.env.PrependENVPath('PYTHONPATH', prefix) |
541 |
conf.env.PrependENVPath('LD_LIBRARY_PATH', env['libinstall']) |
conf.env.PrependENVPath(LD_LIBRARY_PATH_KEY, env['libinstall']) |
542 |
|
|
543 |
if env['usemkl'] and not conf.CheckCHeader('mkl_solver.h'): env['usemkl'] = 0 |
if env['usemkl'] and not conf.CheckCHeader('mkl_solver.h'): env['usemkl'] = 0 |
544 |
if env['usemkl'] and not conf.CheckFunc('pardiso'): env['usemkl'] = 0 |
if env['usemkl'] and not conf.CheckFunc('pardiso'): env['usemkl'] = 0 |
566 |
conf.env.AppendUnique(CPPPATH = [env['blas_path']]) |
conf.env.AppendUnique(CPPPATH = [env['blas_path']]) |
567 |
conf.env.AppendUnique(LIBPATH = [env['blas_lib_path']]) |
conf.env.AppendUnique(LIBPATH = [env['blas_lib_path']]) |
568 |
conf.env.AppendUnique(LIBS = [env['blas_libs']]) |
conf.env.AppendUnique(LIBS = [env['blas_libs']]) |
569 |
conf.env.PrependENVPath('LD_LIBRARY_PATH', env['umf_lib_path']) # The wrapper script needs to find these libs |
conf.env.PrependENVPath(LD_LIBRARY_PATH_KEY, env['umf_lib_path']) # The wrapper script needs to find these libs |
570 |
conf.env.PrependENVPath('LD_LIBRARY_PATH', env['amd_lib_path']) # The wrapper script needs to find these libs |
conf.env.PrependENVPath(LD_LIBRARY_PATH_KEY, env['amd_lib_path']) # The wrapper script needs to find these libs |
571 |
conf.env.PrependENVPath('LD_LIBRARY_PATH', env['blas_lib_path']) # The wrapper script needs to find these libs |
conf.env.PrependENVPath(LD_LIBRARY_PATH_KEY, env['blas_lib_path']) # The wrapper script needs to find these libs |
572 |
#ensure that our path entries remain at the front |
#ensure that our path entries remain at the front |
573 |
conf.env.PrependENVPath('PYTHONPATH', prefix) |
conf.env.PrependENVPath('PYTHONPATH', prefix) |
574 |
conf.env.PrependENVPath('LD_LIBRARY_PATH', env['libinstall']) |
conf.env.PrependENVPath(LD_LIBRARY_PATH_KEY, env['libinstall']) |
575 |
|
|
|
if env['useumfpack'] and not conf.CheckFunc('umfpack_di_symbolic'): env['useumfpack'] = 0 |
|
576 |
if env['useumfpack'] and not conf.CheckCHeader('umfpack.h'): env['useumfpack'] = 0 |
if env['useumfpack'] and not conf.CheckCHeader('umfpack.h'): env['useumfpack'] = 0 |
577 |
|
if env['useumfpack'] and not conf.CheckFunc('umfpack_di_symbolic'): env['useumfpack'] = 0 |
578 |
# if env['useumfpack'] and not conf.CheckFunc('daxpy'): env['useumfpack'] = 0 # this does not work on shake73? |
# if env['useumfpack'] and not conf.CheckFunc('daxpy'): env['useumfpack'] = 0 # this does not work on shake73? |
579 |
|
|
580 |
# Add UMFPACK to environment env if it was found |
# Add UMFPACK to environment env if it was found |
628 |
runPyUnitTest_builder = Builder(action = scons_extensions.runPyUnitTest, suffix = '.passed', src_suffic='.py', single_source=True) |
runPyUnitTest_builder = Builder(action = scons_extensions.runPyUnitTest, suffix = '.passed', src_suffic='.py', single_source=True) |
629 |
env.Append(BUILDERS = {'RunPyUnitTest' : runPyUnitTest_builder}); |
env.Append(BUILDERS = {'RunPyUnitTest' : runPyUnitTest_builder}); |
630 |
|
|
631 |
|
epstopdfbuilder = Builder(action = scons_extensions.eps2pdf, suffix=".pdf", src_suffix=".eps", single_source=True) |
632 |
|
env.Append(BUILDERS = {'EpsToPDF' : epstopdfbuilder}); |
633 |
|
|
634 |
############ MPI (optional) #################################### |
############ MPI (optional) #################################### |
635 |
|
if not env['usempi']: env['mpi_flavour']='none' |
636 |
|
|
637 |
# Create a modified environment for MPI programs (identical to env if usempi=no) |
# Create a modified environment for MPI programs (identical to env if usempi=no) |
638 |
env_mpi = clone_env(env) |
env_mpi = clone_env(env) |
641 |
conf = Configure(clone_env(env_mpi)) |
conf = Configure(clone_env(env_mpi)) |
642 |
|
|
643 |
if env_mpi['usempi']: |
if env_mpi['usempi']: |
644 |
VALID_MPIs=[ "MPT", "OPENMPI", "MPICH", "OPENMPI", "INTELMPI" ] |
VALID_MPIs=[ "MPT", "MPICH", "MPICH2", "OPENMPI", "INTELMPI" ] |
645 |
if not env_mpi['mpi_flavour'] in VALID_MPIs: |
if not env_mpi['mpi_flavour'] in VALID_MPIs: |
646 |
raise ValueError,"MPI is enabled but mpi_flavour = %s is not a valid key from %s."%( env_mpi['mpi_flavour'],VALID_MPIs) |
raise ValueError,"MPI is enabled but mpi_flavour = %s is not a valid key from %s."%( env_mpi['mpi_flavour'],VALID_MPIs) |
647 |
conf.env.AppendUnique(CPPPATH = [env_mpi['mpi_path']]) |
conf.env.AppendUnique(CPPPATH = [env_mpi['mpi_path']]) |
648 |
conf.env.AppendUnique(LIBPATH = [env_mpi['mpi_lib_path']]) |
conf.env.AppendUnique(LIBPATH = [env_mpi['mpi_lib_path']]) |
649 |
conf.env.AppendUnique(LIBS = [env_mpi['mpi_libs']]) |
conf.env.AppendUnique(LIBS = [env_mpi['mpi_libs']]) |
650 |
conf.env.PrependENVPath('LD_LIBRARY_PATH', env['mpi_lib_path']) # The wrapper script needs to find these libs |
conf.env.PrependENVPath(LD_LIBRARY_PATH_KEY, env['mpi_lib_path']) # The wrapper script needs to find these libs |
651 |
#ensure that our path entries remain at the front |
#ensure that our path entries remain at the front |
652 |
conf.env.PrependENVPath('PYTHONPATH', prefix) |
conf.env.PrependENVPath('PYTHONPATH', prefix) |
653 |
conf.env.PrependENVPath('LD_LIBRARY_PATH', env['libinstall']) |
conf.env.PrependENVPath(LD_LIBRARY_PATH_KEY, env['libinstall']) |
654 |
|
|
655 |
if env_mpi['usempi'] and not conf.CheckCHeader('mpi.h'): env_mpi['usempi'] = 0 |
if env_mpi['usempi'] and not conf.CheckCHeader('mpi.h'): env_mpi['usempi'] = 0 |
656 |
# if env_mpi['usempi'] and not conf.CheckFunc('MPI_Init'): env_mpi['usempi'] = 0 |
# if env_mpi['usempi'] and not conf.CheckFunc('MPI_Init'): env_mpi['usempi'] = 0 |
664 |
|
|
665 |
env['usempi'] = env_mpi['usempi'] |
env['usempi'] = env_mpi['usempi'] |
666 |
|
|
667 |
|
|
668 |
############ ParMETIS (optional) ############################### |
############ ParMETIS (optional) ############################### |
669 |
|
|
670 |
# Start a new configure environment that reflects what we've already found |
# Start a new configure environment that reflects what we've already found |
676 |
conf.env.AppendUnique(CPPPATH = [env_mpi['parmetis_path']]) |
conf.env.AppendUnique(CPPPATH = [env_mpi['parmetis_path']]) |
677 |
conf.env.AppendUnique(LIBPATH = [env_mpi['parmetis_lib_path']]) |
conf.env.AppendUnique(LIBPATH = [env_mpi['parmetis_lib_path']]) |
678 |
conf.env.AppendUnique(LIBS = [env_mpi['parmetis_libs']]) |
conf.env.AppendUnique(LIBS = [env_mpi['parmetis_libs']]) |
679 |
conf.env.PrependENVPath('LD_LIBRARY_PATH', env['parmetis_lib_path']) # The wrapper script needs to find these libs |
conf.env.PrependENVPath(LD_LIBRARY_PATH_KEY, env['parmetis_lib_path']) # The wrapper script needs to find these libs |
680 |
#ensure that our path entries remain at the front |
#ensure that our path entries remain at the front |
681 |
conf.env.PrependENVPath('PYTHONPATH', prefix) |
conf.env.PrependENVPath('PYTHONPATH', prefix) |
682 |
conf.env.PrependENVPath('LD_LIBRARY_PATH', env['libinstall']) |
conf.env.PrependENVPath(LD_LIBRARY_PATH_KEY, env['libinstall']) |
683 |
|
|
684 |
if env_mpi['useparmetis'] and not conf.CheckCHeader('parmetis.h'): env_mpi['useparmetis'] = 0 |
if env_mpi['useparmetis'] and not conf.CheckCHeader('parmetis.h'): env_mpi['useparmetis'] = 0 |
685 |
if env_mpi['useparmetis'] and not conf.CheckFunc('ParMETIS_V3_PartGeomKway'): env_mpi['useparmetis'] = 0 |
if env_mpi['useparmetis'] and not conf.CheckFunc('ParMETIS_V3_PartGeomKway'): env_mpi['useparmetis'] = 0 |
706 |
print "" |
print "" |
707 |
print "Summary of configuration (see ./config.log for information)" |
print "Summary of configuration (see ./config.log for information)" |
708 |
print " Using python libraries" |
print " Using python libraries" |
709 |
print " Using numarray" |
print " Using numpy" |
710 |
print " Using boost" |
print " Using boost" |
711 |
if env['usenetcdf']: print " Using NetCDF" |
if env['usenetcdf']: print " Using NetCDF" |
712 |
else: print " Not using NetCDF" |
else: print " Not using NetCDF" |
858 |
build_all_list += ['build_escript'] |
build_all_list += ['build_escript'] |
859 |
build_all_list += ['build_finley'] |
build_all_list += ['build_finley'] |
860 |
if env['usempi']: build_all_list += ['target_pythonMPI_exe'] |
if env['usempi']: build_all_list += ['target_pythonMPI_exe'] |
861 |
if not IS_WINDOWS_PLATFORM: build_all_list += ['target_escript_wrapper'] |
#if not IS_WINDOWS_PLATFORM: build_all_list += ['target_escript_wrapper'] |
862 |
if env['usesilo']: build_all_list += ['target_escript2silo'] |
if env['usesilo']: build_all_list += ['target_escript2silo'] |
863 |
env.Alias('build_all', build_all_list) |
env.Alias('build_all', build_all_list) |
864 |
|
|
872 |
install_all_list += ['target_install_modellib_py'] |
install_all_list += ['target_install_modellib_py'] |
873 |
install_all_list += ['target_install_pycad_py'] |
install_all_list += ['target_install_pycad_py'] |
874 |
if env['usempi']: install_all_list += ['target_install_pythonMPI_exe'] |
if env['usempi']: install_all_list += ['target_install_pythonMPI_exe'] |
875 |
if not IS_WINDOWS_PLATFORM: install_all_list += ['target_install_escript_wrapper'] |
#if not IS_WINDOWS_PLATFORM: install_all_list += ['target_install_escript_wrapper'] |
876 |
if env['usesilo']: install_all_list += ['target_install_escript2silo'] |
if env['usesilo']: install_all_list += ['target_install_escript2silo'] |
877 |
install_all_list += ['remember_options'] |
install_all_list += ['remember_options'] |
878 |
env.Alias('install_all', install_all_list) |
env.Alias('install_all', install_all_list) |
890 |
|
|
891 |
############ Targets to build the documentation ################ |
############ Targets to build the documentation ################ |
892 |
|
|
893 |
|
env.Alias('api_epydoc','install_all') |
894 |
|
|
895 |
env.Alias('docs', ['examples_tarfile', 'examples_zipfile', 'api_epydoc', 'api_doxygen', 'guide_pdf', 'guide_html','install_pdf']) |
env.Alias('docs', ['examples_tarfile', 'examples_zipfile', 'api_epydoc', 'api_doxygen', 'guide_pdf', 'guide_html','install_pdf']) |
896 |
|
|
897 |
if not IS_WINDOWS_PLATFORM: |
if not IS_WINDOWS_PLATFORM: |
910 |
print "Error attempting to write unittests file." |
print "Error attempting to write unittests file." |
911 |
sys.exit(1) |
sys.exit(1) |
912 |
|
|
913 |
|
#Make sure that the escript wrapper is in place |
914 |
|
if not os.path.isfile(os.path.join(env['bininstall'],'escript')): |
915 |
|
print "Copying escript wrapper" |
916 |
|
shutil.copy("bin/escript",os.path.join(env['bininstall'],'escript')) |