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 |
|
|
# Licensed under the Open Software License version 3.0 |
|
|
# http://www.opensource.org/licenses/osl-3.0.php |
|
14 |
|
|
15 |
EnsureSConsVersion(0,96,91) |
EnsureSConsVersion(0,96,91) |
16 |
EnsurePythonVersion(2,3) |
EnsurePythonVersion(2,3) |
37 |
hostname = re.sub("[^0-9a-zA-Z]", "_", socket.gethostname().split('.')[0]) |
hostname = re.sub("[^0-9a-zA-Z]", "_", socket.gethostname().split('.')[0]) |
38 |
tmp = os.path.join("scons",hostname+"_options.py") |
tmp = os.path.join("scons",hostname+"_options.py") |
39 |
options_file = ARGUMENTS.get('options_file', tmp) |
options_file = ARGUMENTS.get('options_file', tmp) |
40 |
if not os.path.isfile(options_file): options_file = False |
if not os.path.isfile(options_file): |
41 |
else: print "Options file is", options_file |
options_file = False |
42 |
|
print "Options file not found (expected '%s')" % tmp |
43 |
|
else: |
44 |
|
print "Options file is", options_file |
45 |
|
|
46 |
# Load options file and command-line arguments |
# Load options file and command-line arguments |
47 |
opts = Options(options_file, ARGUMENTS) |
opts = Options(options_file, ARGUMENTS) |
52 |
# Where to install esys stuff |
# Where to install esys stuff |
53 |
('prefix', 'where everything will be installed', Dir('#.').abspath), |
('prefix', 'where everything will be installed', Dir('#.').abspath), |
54 |
('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')), |
55 |
|
('bininstall', 'where the esys binaries will be installed', os.path.join(prefix,'bin')), |
56 |
('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')), |
57 |
('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')), |
58 |
# Compilation options |
# Compilation options |
60 |
BoolOption('usedebug', 'Do you want a debug build?', 'no'), |
BoolOption('usedebug', 'Do you want a debug build?', 'no'), |
61 |
BoolOption('usevtk', 'Do you want to use VTK?', 'yes'), |
BoolOption('usevtk', 'Do you want to use VTK?', 'yes'), |
62 |
('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), |
63 |
|
('win_cc_name', 'windows C compiler name if needed', 'msvc'), |
64 |
# 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 |
65 |
('cc_flags', 'C compiler flags to use', '-DEFAULT_1'), |
('cc_flags', 'C compiler flags to use', '-DEFAULT_1'), |
66 |
('cc_optim', 'C compiler optimization flags to use', '-DEFAULT_2'), |
('cc_optim', 'C compiler optimization flags to use', '-DEFAULT_2'), |
69 |
('omp_debug', 'OpenMP compiler flags to use (Debug build)', '-DEFAULT_5'), |
('omp_debug', 'OpenMP compiler flags to use (Debug build)', '-DEFAULT_5'), |
70 |
('omp_libs', 'OpenMP compiler libraries to link with', '-DEFAULT_6'), |
('omp_libs', 'OpenMP compiler libraries to link with', '-DEFAULT_6'), |
71 |
('cc_extra', 'Extra C/C++ flags', ''), |
('cc_extra', 'Extra C/C++ flags', ''), |
72 |
|
('ld_extra', 'Extra linker flags', ''), |
73 |
('sys_libs', 'System libraries to link with', []), |
('sys_libs', 'System libraries to link with', []), |
74 |
('ar_flags', 'Static library archiver flags to use', ''), |
('ar_flags', 'Static library archiver flags to use', ''), |
75 |
BoolOption('useopenmp', 'Compile parallel version using OpenMP', 'yes'), |
BoolOption('useopenmp', 'Compile parallel version using OpenMP', 'yes'), |
76 |
BoolOption('usepedantic', 'Compile with -pedantic if using gcc', 'yes'), |
BoolOption('usepedantic', 'Compile with -pedantic if using gcc', 'no'), |
77 |
|
BoolOption('usewarnings','Compile with warnings as errors if using gcc','yes'), |
78 |
# Python |
# Python |
79 |
('python_path', 'Path to Python includes', '/usr/include/'+python_version), |
('python_path', 'Path to Python includes', '/usr/include/'+python_version), |
80 |
('python_lib_path', 'Path to Python libs', usr_lib), |
('python_lib_path', 'Path to Python libs', usr_lib), |
126 |
# BLAS (used by UMFPACK) |
# BLAS (used by UMFPACK) |
127 |
('blas_path', 'Path to BLAS includes', '/usr/include/suitesparse'), |
('blas_path', 'Path to BLAS includes', '/usr/include/suitesparse'), |
128 |
('blas_lib_path', 'Path to BLAS libs', usr_lib), |
('blas_lib_path', 'Path to BLAS libs', usr_lib), |
129 |
('blas_libs', 'BLAS libraries to link with', ['blas']) |
('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 #################### |
############ Specify which compilers to use #################### |
137 |
# failing to find the compilers. This warning can be safely ignored. |
# failing to find the compilers. This warning can be safely ignored. |
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 socket.gethostname().split('.')[0] == 'service0': |
if socket.gethostname().split('.')[0] == 'service0': |
145 |
env = Environment(tools = ['default', 'intelc'], options = opts) |
env = Environment(tools = ['default', 'intelc'], options = opts) |
164 |
# Intel compilers |
# Intel compilers |
165 |
cc_flags = "-fPIC -ansi -wd161 -w1 -vec-report0 -DBLOCKTIMER -DCORE_ID1" |
cc_flags = "-fPIC -ansi -wd161 -w1 -vec-report0 -DBLOCKTIMER -DCORE_ID1" |
166 |
cc_optim = "-O3 -ftz -IPF_ftlacc- -IPF_fma -fno-alias" |
cc_optim = "-O3 -ftz -IPF_ftlacc- -IPF_fma -fno-alias" |
167 |
cc_debug = "-g -O0 -UDOASSERT -DDOPROF -DBOUNDS_CHECK" |
cc_debug = "-g -O0 -DDOASSERT -DDOPROF -DBOUNDS_CHECK" |
168 |
omp_optim = "-openmp -openmp_report0" |
omp_optim = "-openmp -openmp_report0" |
169 |
omp_debug = "-openmp -openmp_report0" |
omp_debug = "-openmp -openmp_report0" |
170 |
omp_libs = ['guide', 'pthread'] |
omp_libs = ['guide', 'pthread'] |
171 |
pedantic = "" |
pedantic = "" |
172 |
|
fatalwarning = "" # Switch to turn warnings into errors |
173 |
elif env["CC"] == "gcc": |
elif env["CC"] == "gcc": |
174 |
# GNU C on any system |
# GNU C on any system |
175 |
cc_flags = "-fPIC -ansi -ffast-math -Wno-unknown-pragmas -DBLOCKTIMER" |
cc_flags = "-pedantic -Wall -fPIC -ansi -ffast-math -Wno-unknown-pragmas -DBLOCKTIMER -isystem " + env['boost_path'] + " -isystem " + env['python_path'] + " -Wno-sign-compare -Wno-system-headers -Wno-strict-aliasing" |
176 |
|
#the strict aliasing warning is triggered by some type punning in the boost headers for version 1.34 |
177 |
|
#isystem does not seem to prevent this |
178 |
cc_optim = "-O3" |
cc_optim = "-O3" |
179 |
cc_debug = "-g -O0 -UDOASSERT -DDOPROF -DBOUNDS_CHECK" |
cc_debug = "-g -O0 -DDOASSERT -DDOPROF -DBOUNDS_CHECK" |
180 |
omp_optim = "" |
omp_optim = "" |
181 |
omp_debug = "" |
omp_debug = "" |
182 |
omp_libs = [] |
omp_libs = [] |
183 |
pedantic = "-pedantic-errors -Wno-long-long" |
pedantic = "-pedantic-errors -Wno-long-long" |
184 |
|
fatalwarning = "-Werror" |
185 |
elif env["CC"] == "cl": |
elif env["CC"] == "cl": |
186 |
# Microsoft Visual C on Windows |
# Microsoft Visual C on Windows |
187 |
cc_flags = "/FD /EHsc /GR /wd4068 -D_USE_MATH_DEFINES -DDLL_NETCDF" |
cc_flags = "/FD /EHsc /GR /wd4068 -D_USE_MATH_DEFINES -DDLL_NETCDF" |
191 |
omp_debug = "" |
omp_debug = "" |
192 |
omp_libs = [] |
omp_libs = [] |
193 |
pedantic = "" |
pedantic = "" |
194 |
|
fatalwarning = "" |
195 |
|
elif env["CC"] == "icl": |
196 |
|
# intel C on Windows, see windows_intelc_options.py for a start |
197 |
|
pedantic = "" |
198 |
|
fatalwarning = "" |
199 |
|
|
200 |
# If not specified in hostname_options.py then set them here |
# If not specified in hostname_options.py then set them here |
201 |
if env["cc_flags"] == "-DEFAULT_1": env['cc_flags'] = cc_flags |
if env["cc_flags"] == "-DEFAULT_1": env['cc_flags'] = cc_flags |
213 |
|
|
214 |
if env['omp_optim'] == "" and env['omp_debug'] == "": env["useopenmp"] = 0 |
if env['omp_optim'] == "" and env['omp_debug'] == "": env["useopenmp"] = 0 |
215 |
|
|
|
Execute(Delete(env['libinstall'] + "/Compiled.with.debug")) |
|
|
Execute(Delete(env['libinstall'] + "/Compiled.with.mpi")) |
|
|
Execute(Delete(env['libinstall'] + "/Compiled.with.openmp")) |
|
|
if not env['useMPI']: Execute(Delete(env['libinstall'] + "/pythonMPI")) |
|
|
|
|
216 |
############ Copy environment variables into scons env ######### |
############ Copy environment variables into scons env ######### |
217 |
|
|
218 |
try: env['ENV']['OMP_NUM_THREADS'] = os.environ['OMP_NUM_THREADS'] |
try: env['ENV']['OMP_NUM_THREADS'] = os.environ['OMP_NUM_THREADS'] |
249 |
env.PrependENVPath('PYTHONPATH', prefix) |
env.PrependENVPath('PYTHONPATH', prefix) |
250 |
env.PrependENVPath('LD_LIBRARY_PATH', env['libinstall']) |
env.PrependENVPath('LD_LIBRARY_PATH', env['libinstall']) |
251 |
|
|
252 |
|
env['ENV']['ESCRIPT_ROOT'] = prefix |
253 |
|
|
254 |
############ Set up paths for Configure() ###################### |
############ Set up paths for Configure() ###################### |
255 |
|
|
256 |
# Make a copy of an environment |
# Make a copy of an environment |
265 |
# Add cc option -L<Escript>/trunk/lib |
# Add cc option -L<Escript>/trunk/lib |
266 |
env.Append(LIBPATH = [Dir(env['libinstall'])]) |
env.Append(LIBPATH = [Dir(env['libinstall'])]) |
267 |
|
|
|
env.Append(CPPDEFINES = ['ESCRIPT_EXPORTS', 'FINLEY_EXPORTS']) |
|
|
|
|
268 |
if env['cc_extra'] != '': env.Append(CCFLAGS = env['cc_extra']) |
if env['cc_extra'] != '': env.Append(CCFLAGS = env['cc_extra']) |
269 |
|
if env['ld_extra'] != '': env.Append(LINKFLAGS = env['ld_extra']) |
270 |
|
|
271 |
if env['usepedantic']: env.Append(CCFLAGS = pedantic) |
if env['usepedantic']: env.Append(CCFLAGS = pedantic) |
272 |
|
|
274 |
if IS_WINDOWS_PLATFORM: |
if IS_WINDOWS_PLATFORM: |
275 |
env.PrependENVPath('PATH', [env['boost_lib_path']]) |
env.PrependENVPath('PATH', [env['boost_lib_path']]) |
276 |
env.PrependENVPath('PATH', [env['libinstall']]) |
env.PrependENVPath('PATH', [env['libinstall']]) |
277 |
|
env.Append(CPPDEFINES = ['ESYSUTILS_STATIC_LIB']) |
278 |
|
|
279 |
if env['usenetcdf']: |
if env['usenetcdf']: |
280 |
env.PrependENVPath('PATH', [env['netCDF_lib_path']]) |
env.PrependENVPath('PATH', [env['netCDF_lib_path']]) |
281 |
|
|
309 |
print "Cannot run C compiler '%s' (or libc is missing)" % (env['CC']) |
print "Cannot run C compiler '%s' (or libc is missing)" % (env['CC']) |
310 |
sys.exit(1) |
sys.exit(1) |
311 |
|
|
312 |
if not conf.CheckFunc('gethostname'): |
if conf.CheckFunc('gethostname'): |
313 |
env.Append(CPPDEFINES = ['HAVE_GETHOSTNAME']) |
conf.env.Append(CPPDEFINES = ['HAVE_GETHOSTNAME']) |
314 |
|
|
315 |
############ python libraries (required) ####################### |
############ python libraries (required) ####################### |
316 |
|
|
318 |
conf.env.AppendUnique(LIBPATH = [env['python_lib_path']]) |
conf.env.AppendUnique(LIBPATH = [env['python_lib_path']]) |
319 |
conf.env.AppendUnique(LIBS = [env['python_libs']]) |
conf.env.AppendUnique(LIBS = [env['python_libs']]) |
320 |
|
|
321 |
|
conf.env.PrependENVPath('LD_LIBRARY_PATH', env['python_lib_path']) # The wrapper script needs to find these libs |
322 |
|
|
323 |
if not conf.CheckCHeader('Python.h'): |
if not conf.CheckCHeader('Python.h'): |
324 |
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']) |
325 |
sys.exit(1) |
sys.exit(1) |
333 |
conf.env.AppendUnique(LIBPATH = [env['boost_lib_path']]) |
conf.env.AppendUnique(LIBPATH = [env['boost_lib_path']]) |
334 |
conf.env.AppendUnique(LIBS = [env['boost_libs']]) |
conf.env.AppendUnique(LIBS = [env['boost_libs']]) |
335 |
|
|
336 |
|
conf.env.PrependENVPath('LD_LIBRARY_PATH', env['boost_lib_path']) # The wrapper script needs to find these libs |
337 |
|
|
338 |
if not conf.CheckCXXHeader('boost/python.hpp'): |
if not conf.CheckCXXHeader('boost/python.hpp'): |
339 |
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']) |
340 |
sys.exit(1) |
sys.exit(1) |
366 |
conf.env.AppendUnique(CPPPATH = [env['netCDF_path']]) |
conf.env.AppendUnique(CPPPATH = [env['netCDF_path']]) |
367 |
conf.env.AppendUnique(LIBPATH = [env['netCDF_lib_path']]) |
conf.env.AppendUnique(LIBPATH = [env['netCDF_lib_path']]) |
368 |
conf.env.AppendUnique(LIBS = [env['netCDF_libs']]) |
conf.env.AppendUnique(LIBS = [env['netCDF_libs']]) |
369 |
|
conf.env.PrependENVPath('LD_LIBRARY_PATH', env['netCDF_lib_path']) # The wrapper script needs to find these libs |
370 |
|
|
371 |
if env['usenetcdf'] and not conf.CheckCHeader('netcdf.h'): env['usenetcdf'] = 0 |
if env['usenetcdf'] and not conf.CheckCHeader('netcdf.h'): env['usenetcdf'] = 0 |
372 |
if env['usenetcdf'] and not conf.CheckFunc('nc_open'): env['usenetcdf'] = 0 |
if env['usenetcdf'] and not conf.CheckFunc('nc_open'): env['usenetcdf'] = 0 |
387 |
conf.env.AppendUnique(CPPPATH = [env['papi_path']]) |
conf.env.AppendUnique(CPPPATH = [env['papi_path']]) |
388 |
conf.env.AppendUnique(LIBPATH = [env['papi_lib_path']]) |
conf.env.AppendUnique(LIBPATH = [env['papi_lib_path']]) |
389 |
conf.env.AppendUnique(LIBS = [env['papi_libs']]) |
conf.env.AppendUnique(LIBS = [env['papi_libs']]) |
390 |
|
conf.env.PrependENVPath('LD_LIBRARY_PATH', env['papi_lib_path']) # The wrapper script needs to find these libs |
391 |
|
|
392 |
if env['usepapi'] and not conf.CheckCHeader('papi.h'): env['usepapi'] = 0 |
if env['usepapi'] and not conf.CheckCHeader('papi.h'): env['usepapi'] = 0 |
393 |
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 |
408 |
conf.env.AppendUnique(CPPPATH = [env['mkl_path']]) |
conf.env.AppendUnique(CPPPATH = [env['mkl_path']]) |
409 |
conf.env.AppendUnique(LIBPATH = [env['mkl_lib_path']]) |
conf.env.AppendUnique(LIBPATH = [env['mkl_lib_path']]) |
410 |
conf.env.AppendUnique(LIBS = [env['mkl_libs']]) |
conf.env.AppendUnique(LIBS = [env['mkl_libs']]) |
411 |
|
conf.env.PrependENVPath('LD_LIBRARY_PATH', env['mkl_lib_path']) # The wrapper script needs to find these libs |
412 |
|
|
413 |
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 |
414 |
if env['usemkl'] and not conf.CheckFunc('pardiso_'): env['usemkl'] = 0 |
if env['usemkl'] and not conf.CheckFunc('pardiso_'): env['usemkl'] = 0 |
436 |
conf.env.AppendUnique(CPPPATH = [env['blas_path']]) |
conf.env.AppendUnique(CPPPATH = [env['blas_path']]) |
437 |
conf.env.AppendUnique(LIBPATH = [env['blas_lib_path']]) |
conf.env.AppendUnique(LIBPATH = [env['blas_lib_path']]) |
438 |
conf.env.AppendUnique(LIBS = [env['blas_libs']]) |
conf.env.AppendUnique(LIBS = [env['blas_libs']]) |
439 |
|
conf.env.PrependENVPath('LD_LIBRARY_PATH', env['umf_lib_path']) # The wrapper script needs to find these libs |
440 |
|
conf.env.PrependENVPath('LD_LIBRARY_PATH', env['amd_lib_path']) # The wrapper script needs to find these libs |
441 |
|
conf.env.PrependENVPath('LD_LIBRARY_PATH', env['blas_lib_path']) # The wrapper script needs to find these libs |
442 |
|
|
443 |
if env['useumfpack'] and not conf.CheckCHeader('umfpack.h'): env['useumfpack'] = 0 |
if env['useumfpack'] and not conf.CheckCHeader('umfpack.h'): env['useumfpack'] = 0 |
444 |
if env['useumfpack'] and not conf.CheckFunc('umfpack_di_symbolic'): env['useumfpack'] = 0 |
if env['useumfpack'] and not conf.CheckFunc('umfpack_di_symbolic'): env['useumfpack'] = 0 |
476 |
conf.env.AppendUnique(CPPPATH = [env_mpi['mpi_path']]) |
conf.env.AppendUnique(CPPPATH = [env_mpi['mpi_path']]) |
477 |
conf.env.AppendUnique(LIBPATH = [env_mpi['mpi_lib_path']]) |
conf.env.AppendUnique(LIBPATH = [env_mpi['mpi_lib_path']]) |
478 |
conf.env.AppendUnique(LIBS = [env_mpi['mpi_libs']]) |
conf.env.AppendUnique(LIBS = [env_mpi['mpi_libs']]) |
479 |
|
conf.env.PrependENVPath('LD_LIBRARY_PATH', env['mpi_lib_path']) # The wrapper script needs to find these libs |
480 |
|
|
481 |
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 |
482 |
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 |
501 |
conf.env.AppendUnique(CPPPATH = [env_mpi['parmetis_path']]) |
conf.env.AppendUnique(CPPPATH = [env_mpi['parmetis_path']]) |
502 |
conf.env.AppendUnique(LIBPATH = [env_mpi['parmetis_lib_path']]) |
conf.env.AppendUnique(LIBPATH = [env_mpi['parmetis_lib_path']]) |
503 |
conf.env.AppendUnique(LIBS = [env_mpi['parmetis_libs']]) |
conf.env.AppendUnique(LIBS = [env_mpi['parmetis_libs']]) |
504 |
|
conf.env.PrependENVPath('LD_LIBRARY_PATH', env['parmetis_lib_path']) # The wrapper script needs to find these libs |
505 |
|
|
506 |
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 |
507 |
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 |
515 |
|
|
516 |
env['useparmetis'] = env_mpi['useparmetis'] |
env['useparmetis'] = env_mpi['useparmetis'] |
517 |
|
|
518 |
|
############ Now we switch on Warnings as errors ############### |
519 |
|
|
520 |
|
#this needs to be done after configuration because the scons test files have warnings in them |
521 |
|
|
522 |
|
if ((fatalwarning != "") and (env['usewarnings'])): |
523 |
|
env.Append(CCFLAGS = fatalwarning) |
524 |
|
env_mpi.Append(CCFLAGS = fatalwarning) |
525 |
|
|
526 |
############ Summarize our environment ######################### |
############ Summarize our environment ######################### |
527 |
|
|
528 |
print "" |
print "" |
549 |
if env['usedebug']: print " Compiling for debug" |
if env['usedebug']: print " Compiling for debug" |
550 |
else: print " Not compiling for debug" |
else: print " Not compiling for debug" |
551 |
print " Installing in", prefix |
print " Installing in", prefix |
552 |
|
if ((fatalwarning != "") and (env['usewarnings'])): print " Treating warnings as errors" |
553 |
|
else: print " Not treating warnings as errors" |
554 |
print "" |
print "" |
555 |
|
|
556 |
|
############ Delete option-dependent files ##################### |
557 |
|
|
558 |
|
Execute(Delete(env['libinstall'] + "/Compiled.with.debug")) |
559 |
|
Execute(Delete(env['libinstall'] + "/Compiled.with.mpi")) |
560 |
|
Execute(Delete(env['libinstall'] + "/Compiled.with.openmp")) |
561 |
|
if not env['usempi']: Execute(Delete(env['libinstall'] + "/pythonMPI")) |
562 |
|
|
563 |
############ Add some custom builders ########################## |
############ Add some custom builders ########################## |
564 |
|
|
565 |
py_builder = Builder(action = scons_extensions.build_py, suffix = '.pyc', src_suffix = '.py', single_source=True) |
py_builder = Builder(action = scons_extensions.build_py, suffix = '.pyc', src_suffix = '.py', single_source=True) |
571 |
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) |
572 |
env.Append(BUILDERS = {'RunPyUnitTest' : runPyUnitTest_builder}); |
env.Append(BUILDERS = {'RunPyUnitTest' : runPyUnitTest_builder}); |
573 |
|
|
574 |
############ Build the desired subdirectories ################## |
############ Build the subdirectories ########################## |
575 |
|
|
576 |
Export(["env", "env_mpi", "clone_env"]) |
Export( |
577 |
|
["env", |
578 |
|
"env_mpi", |
579 |
|
"clone_env", |
580 |
|
"IS_WINDOWS_PLATFORM" |
581 |
|
] |
582 |
|
) |
583 |
|
|
584 |
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) |
585 |
env.SConscript(dirs = ['paso/src'], build_dir='build/$PLATFORM/paso', duplicate=0) |
env.SConscript(dirs = ['paso/src'], build_dir='build/$PLATFORM/paso', duplicate=0) |
591 |
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) |
592 |
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) |
593 |
env.SConscript(dirs = ['pythonMPI/src'], build_dir='build/$PLATFORM/pythonMPI', duplicate=0) |
env.SConscript(dirs = ['pythonMPI/src'], build_dir='build/$PLATFORM/pythonMPI', duplicate=0) |
594 |
|
env.SConscript(dirs = ['scripts'], build_dir='build/$PLATFORM/scripts', duplicate=0) |
595 |
|
|
596 |
############ Remember what optimizations we used ############### |
############ Remember what optimizations we used ############### |
597 |
|
|
632 |
build_all_list += ['build_paso'] |
build_all_list += ['build_paso'] |
633 |
build_all_list += ['build_escript'] |
build_all_list += ['build_escript'] |
634 |
build_all_list += ['build_finley'] |
build_all_list += ['build_finley'] |
635 |
if env['usempi']: build_all_list += ['target_pythonMPI_exe'] |
if env['usempi']: build_all_list += ['target_pythonMPI_exe'] |
636 |
|
if not IS_WINDOWS_PLATFORM: build_all_list += ['target_finley_wrapper'] |
637 |
env.Alias('build_all', build_all_list) |
env.Alias('build_all', build_all_list) |
638 |
|
|
639 |
install_all_list = [] |
install_all_list = [] |
645 |
install_all_list += ['target_install_pyvisi_py'] |
install_all_list += ['target_install_pyvisi_py'] |
646 |
install_all_list += ['target_install_modellib_py'] |
install_all_list += ['target_install_modellib_py'] |
647 |
install_all_list += ['target_install_pycad_py'] |
install_all_list += ['target_install_pycad_py'] |
648 |
if env['usempi']: install_all_list += ['target_install_pythonMPI_exe'] |
if env['usempi']: install_all_list += ['target_install_pythonMPI_exe'] |
649 |
|
if not IS_WINDOWS_PLATFORM: install_all_list += ['target_install_finley_wrapper'] |
650 |
install_all_list += ['remember_options'] |
install_all_list += ['remember_options'] |
651 |
env.Alias('install_all', install_all_list) |
env.Alias('install_all', install_all_list) |
652 |
|
|