15 |
EnsureSConsVersion(0,96,91) |
EnsureSConsVersion(0,96,91) |
16 |
EnsurePythonVersion(2,3) |
EnsurePythonVersion(2,3) |
17 |
|
|
18 |
import sys, os, re, socket |
import sys, os, re, socket, platform |
19 |
|
|
20 |
# Add our extensions |
# Add our extensions |
21 |
if os.path.isdir('scons'): sys.path.append('scons') |
if os.path.isdir('scons'): sys.path.append('scons') |
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'), |
72 |
('ld_extra', 'Extra linker flags', ''), |
('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', 'no'), |
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 |
|
('forcelazy','for testing use only - set the default value for autolazy','leave_alone'), |
79 |
# Python |
# Python |
80 |
('python_path', 'Path to Python includes', '/usr/include/'+python_version), |
('python_path', 'Path to Python includes', '/usr/include/'+python_version), |
81 |
('python_lib_path', 'Path to Python libs', usr_lib), |
('python_lib_path', 'Path to Python libs', usr_lib), |
120 |
('umf_path', 'Path to UMFPACK includes', '/usr/include/suitesparse'), |
('umf_path', 'Path to UMFPACK includes', '/usr/include/suitesparse'), |
121 |
('umf_lib_path', 'Path to UMFPACK libs', usr_lib), |
('umf_lib_path', 'Path to UMFPACK libs', usr_lib), |
122 |
('umf_libs', 'UMFPACK libraries to link with', ['umfpack']), |
('umf_libs', 'UMFPACK libraries to link with', ['umfpack']), |
123 |
|
# Silo |
124 |
|
BoolOption('usesilo', 'switch on/off the usage of Silo', 'yes'), |
125 |
|
('silo_path', 'Path to Silo includes', '/usr/include'), |
126 |
|
('silo_lib_path', 'Path to Silo libs', usr_lib), |
127 |
|
('silo_libs', 'Silo libraries to link with', ['siloh5', 'hdf5']), |
128 |
# AMD (used by UMFPACK) |
# AMD (used by UMFPACK) |
129 |
('amd_path', 'Path to AMD includes', '/usr/include/suitesparse'), |
('amd_path', 'Path to AMD includes', '/usr/include/suitesparse'), |
130 |
('amd_lib_path', 'Path to AMD libs', usr_lib), |
('amd_lib_path', 'Path to AMD libs', usr_lib), |
132 |
# BLAS (used by UMFPACK) |
# BLAS (used by UMFPACK) |
133 |
('blas_path', 'Path to BLAS includes', '/usr/include/suitesparse'), |
('blas_path', 'Path to BLAS includes', '/usr/include/suitesparse'), |
134 |
('blas_lib_path', 'Path to BLAS libs', usr_lib), |
('blas_lib_path', 'Path to BLAS libs', usr_lib), |
135 |
('blas_libs', 'BLAS libraries to link with', ['blas']) |
('blas_libs', 'BLAS libraries to link with', ['blas']), |
136 |
|
# An option for specifying the compiler tools set (see windows branch). |
137 |
|
('tools_names', 'allow control over the tools in the env setup', ['intelc']), |
138 |
|
# finer control over library building, intel aggressive global optimisation |
139 |
|
# works with dynamic libraries on windows. |
140 |
|
('share_esysUtils', 'control static or dynamic esysUtils lib', False), |
141 |
|
('share_paso', 'control static or dynamic paso lib', False) |
142 |
) |
) |
143 |
|
|
144 |
############ Specify which compilers to use #################### |
############ Specify which compilers to use #################### |
147 |
# failing to find the compilers. This warning can be safely ignored. |
# failing to find the compilers. This warning can be safely ignored. |
148 |
|
|
149 |
if IS_WINDOWS_PLATFORM: |
if IS_WINDOWS_PLATFORM: |
150 |
env = Environment(tools = ['default', 'msvc'], options = opts) |
env = Environment(options = opts) |
151 |
|
env = Environment(tools = ['default'] + env['tools_names'], |
152 |
|
options = opts) |
153 |
else: |
else: |
154 |
if socket.gethostname().split('.')[0] == 'service0': |
if socket.gethostname().split('.')[0] == 'service0': |
155 |
env = Environment(tools = ['default', 'intelc'], options = opts) |
env = Environment(tools = ['default', 'intelc'], options = opts) |
170 |
# Default compiler options (override allowed in hostname_options.py, but should not be necessary) |
# Default compiler options (override allowed in hostname_options.py, but should not be necessary) |
171 |
# For both C and C++ you get: cc_flags and either the optim flags or debug flags |
# For both C and C++ you get: cc_flags and either the optim flags or debug flags |
172 |
|
|
173 |
|
sysheaderopt = "" # how do we indicate that a header is a system header. Use "" for no action. |
174 |
|
|
175 |
if env["CC"] == "icc": |
if env["CC"] == "icc": |
176 |
# Intel compilers |
# Intel compilers |
177 |
cc_flags = "-fPIC -ansi -wd161 -w1 -vec-report0 -DBLOCKTIMER -DCORE_ID1" |
cc_flags = "-fPIC -ansi -wd161 -w1 -vec-report0 -DBLOCKTIMER -DCORE_ID1" |
181 |
omp_debug = "-openmp -openmp_report0" |
omp_debug = "-openmp -openmp_report0" |
182 |
omp_libs = ['guide', 'pthread'] |
omp_libs = ['guide', 'pthread'] |
183 |
pedantic = "" |
pedantic = "" |
184 |
|
fatalwarning = "" # Switch to turn warnings into errors |
185 |
|
sysheaderopt = "" |
186 |
elif env["CC"] == "gcc": |
elif env["CC"] == "gcc": |
187 |
# GNU C on any system |
# GNU C on any system |
188 |
cc_flags = "-fPIC -ansi -ffast-math -Wno-unknown-pragmas -DBLOCKTIMER" |
cc_flags = "-pedantic -Wall -fPIC -ansi -ffast-math -Wno-unknown-pragmas -DBLOCKTIMER -Wno-sign-compare -Wno-system-headers -Wno-long-long -Wno-strict-aliasing" |
189 |
|
#the long long warning occurs on the Mac |
190 |
cc_optim = "-O3" |
cc_optim = "-O3" |
191 |
cc_debug = "-g -O0 -DDOASSERT -DDOPROF -DBOUNDS_CHECK" |
cc_debug = "-g -O0 -DDOASSERT -DDOPROF -DBOUNDS_CHECK" |
192 |
omp_optim = "" |
omp_optim = "" |
193 |
omp_debug = "" |
omp_debug = "" |
194 |
omp_libs = [] |
omp_libs = [] |
195 |
pedantic = "-pedantic-errors -Wno-long-long" |
pedantic = "-pedantic-errors -Wno-long-long" |
196 |
|
fatalwarning = "-Werror" |
197 |
|
sysheaderopt = "-isystem " |
198 |
elif env["CC"] == "cl": |
elif env["CC"] == "cl": |
199 |
# Microsoft Visual C on Windows |
# Microsoft Visual C on Windows |
200 |
cc_flags = "/FD /EHsc /GR /wd4068 -D_USE_MATH_DEFINES -DDLL_NETCDF" |
cc_flags = "/FD /EHsc /GR /wd4068 -D_USE_MATH_DEFINES -DDLL_NETCDF" |
204 |
omp_debug = "" |
omp_debug = "" |
205 |
omp_libs = [] |
omp_libs = [] |
206 |
pedantic = "" |
pedantic = "" |
207 |
|
fatalwarning = "" |
208 |
|
sysheaderopt = "" |
209 |
|
elif env["CC"] == "icl": |
210 |
|
# intel C on Windows, see windows_intelc_options.py for a start |
211 |
|
pedantic = "" |
212 |
|
fatalwarning = "" |
213 |
|
sysheaderopt = "" |
214 |
|
|
215 |
|
|
216 |
# If not specified in hostname_options.py then set them here |
# If not specified in hostname_options.py then set them here |
217 |
if env["cc_flags"] == "-DEFAULT_1": env['cc_flags'] = cc_flags |
if env["cc_flags"] == "-DEFAULT_1": env['cc_flags'] = cc_flags |
221 |
if env["omp_debug"] == "-DEFAULT_5": env['omp_debug'] = omp_debug |
if env["omp_debug"] == "-DEFAULT_5": env['omp_debug'] = omp_debug |
222 |
if env["omp_libs"] == "-DEFAULT_6": env['omp_libs'] = omp_libs |
if env["omp_libs"] == "-DEFAULT_6": env['omp_libs'] = omp_libs |
223 |
|
|
224 |
|
#set up the autolazy values |
225 |
|
if env['forcelazy'] != "leave_alone": |
226 |
|
if env['forcelazy'] == 'on': |
227 |
|
env.Append(CPPDEFINES='FAUTOLAZYON') |
228 |
|
else: |
229 |
|
if env['forcelazy'] == 'off': |
230 |
|
env.Append(CPPDEFINES='FAUTOLAZYOFF') |
231 |
|
|
232 |
# 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 |
233 |
if not env["useopenmp"]: |
if not env["useopenmp"]: |
234 |
env['omp_optim'] = "" |
env['omp_optim'] = "" |
289 |
# Add cc option -L<Escript>/trunk/lib |
# Add cc option -L<Escript>/trunk/lib |
290 |
env.Append(LIBPATH = [Dir(env['libinstall'])]) |
env.Append(LIBPATH = [Dir(env['libinstall'])]) |
291 |
|
|
|
env.Append(CPPDEFINES = ['ESCRIPT_EXPORTS', 'FINLEY_EXPORTS']) |
|
|
|
|
292 |
if env['cc_extra'] != '': env.Append(CCFLAGS = env['cc_extra']) |
if env['cc_extra'] != '': env.Append(CCFLAGS = env['cc_extra']) |
293 |
if env['ld_extra'] != '': env.Append(LINKFLAGS = env['ld_extra']) |
if env['ld_extra'] != '': env.Append(LINKFLAGS = env['ld_extra']) |
294 |
|
|
298 |
if IS_WINDOWS_PLATFORM: |
if IS_WINDOWS_PLATFORM: |
299 |
env.PrependENVPath('PATH', [env['boost_lib_path']]) |
env.PrependENVPath('PATH', [env['boost_lib_path']]) |
300 |
env.PrependENVPath('PATH', [env['libinstall']]) |
env.PrependENVPath('PATH', [env['libinstall']]) |
301 |
|
if not env['share_esysUtils'] : |
302 |
|
env.Append(CPPDEFINES = ['ESYSUTILS_STATIC_LIB']) |
303 |
|
if not env['share_paso'] : |
304 |
|
env.Append(CPPDEFINES = ['PASO_STATIC_LIB']) |
305 |
|
|
306 |
if env['usenetcdf']: |
if env['usenetcdf']: |
307 |
env.PrependENVPath('PATH', [env['netCDF_lib_path']]) |
env.PrependENVPath('PATH', [env['netCDF_lib_path']]) |
308 |
|
|
333 |
|
|
334 |
# Test that the compiler is working |
# Test that the compiler is working |
335 |
if not conf.CheckFunc('printf'): |
if not conf.CheckFunc('printf'): |
336 |
print "Cannot run C compiler '%s' (or libc is missing)" % (env['CC']) |
print "Cannot run C compiler '%s' (or libc is missing)" % (env['CC']) |
337 |
sys.exit(1) |
sys.exit(1) |
338 |
|
|
339 |
if conf.CheckFunc('gethostname'): |
if conf.CheckFunc('gethostname'): |
340 |
conf.env.Append(CPPDEFINES = ['HAVE_GETHOSTNAME']) |
conf.env.Append(CPPDEFINES = ['HAVE_GETHOSTNAME']) |
341 |
|
|
342 |
############ python libraries (required) ####################### |
############ python libraries (required) ####################### |
343 |
|
|
344 |
conf.env.AppendUnique(CPPPATH = [env['python_path']]) |
|
345 |
|
if not sysheaderopt =="": |
346 |
|
conf.env.Append(CCFLAGS=sysheaderopt+env['python_path']) |
347 |
|
else: |
348 |
|
conf.env.AppendUnique(CPPPATH = [env['python_path']]) |
349 |
|
|
350 |
conf.env.AppendUnique(LIBPATH = [env['python_lib_path']]) |
conf.env.AppendUnique(LIBPATH = [env['python_lib_path']]) |
351 |
conf.env.AppendUnique(LIBS = [env['python_libs']]) |
conf.env.AppendUnique(LIBS = [env['python_libs']]) |
352 |
|
|
355 |
if not conf.CheckCHeader('Python.h'): |
if not conf.CheckCHeader('Python.h'): |
356 |
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']) |
357 |
sys.exit(1) |
sys.exit(1) |
358 |
if not conf.CheckFunc('Py_Main'): |
if not conf.CheckFunc('Py_Exit'): |
359 |
print "Cannot find python library method Py_Main (tried lib %s in directory %s)" % (env['python_libs'], env['python_lib_path']) |
print "Cannot find python library method Py_Main (tried lib %s in directory %s)" % (env['python_libs'], env['python_lib_path']) |
360 |
sys.exit(1) |
sys.exit(1) |
361 |
|
|
362 |
############ boost (required) ################################## |
############ boost (required) ################################## |
363 |
|
|
364 |
conf.env.AppendUnique(CPPPATH = [env['boost_path']]) |
if not sysheaderopt =="": |
365 |
|
conf.env.Append(CCFLAGS=sysheaderopt+os.path.join(env['boost_path'],'boost')) |
366 |
|
else: |
367 |
|
conf.env.AppendUnique(CPPPATH = [env['boost_path']]) |
368 |
|
|
369 |
conf.env.AppendUnique(LIBPATH = [env['boost_lib_path']]) |
conf.env.AppendUnique(LIBPATH = [env['boost_lib_path']]) |
370 |
conf.env.AppendUnique(LIBS = [env['boost_libs']]) |
conf.env.AppendUnique(LIBS = [env['boost_libs']]) |
371 |
|
|
374 |
if not conf.CheckCXXHeader('boost/python.hpp'): |
if not conf.CheckCXXHeader('boost/python.hpp'): |
375 |
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']) |
376 |
sys.exit(1) |
sys.exit(1) |
377 |
|
|
378 |
if not conf.CheckFunc('PyObject_SetAttr'): |
if not conf.CheckFunc('PyObject_SetAttr'): |
379 |
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']) |
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']) |
380 |
sys.exit(1) |
sys.exit(1) |
477 |
conf.env.PrependENVPath('LD_LIBRARY_PATH', env['amd_lib_path']) # The wrapper script needs to find these libs |
conf.env.PrependENVPath('LD_LIBRARY_PATH', env['amd_lib_path']) # The wrapper script needs to find these libs |
478 |
conf.env.PrependENVPath('LD_LIBRARY_PATH', env['blas_lib_path']) # The wrapper script needs to find these libs |
conf.env.PrependENVPath('LD_LIBRARY_PATH', env['blas_lib_path']) # The wrapper script needs to find these libs |
479 |
|
|
|
if env['useumfpack'] and not conf.CheckCHeader('umfpack.h'): env['useumfpack'] = 0 |
|
480 |
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 |
481 |
|
if env['useumfpack'] and not conf.CheckCHeader('umfpack.h'): env['useumfpack'] = 0 |
482 |
|
# if env['useumfpack'] and not conf.CheckFunc('daxpy'): env['useumfpack'] = 0 # this does not work on shake73? |
483 |
|
|
484 |
# Add UMFPACK to environment env if it was found |
# Add UMFPACK to environment env if it was found |
485 |
if env['useumfpack']: |
if env['useumfpack']: |
488 |
else: |
else: |
489 |
conf.Finish() |
conf.Finish() |
490 |
|
|
491 |
|
############ Silo (optional) ################################### |
492 |
|
|
493 |
|
if env['usesilo']: |
494 |
|
conf = Configure(clone_env(env)) |
495 |
|
conf.env.AppendUnique(CPPPATH = [env['silo_path']]) |
496 |
|
conf.env.AppendUnique(LIBPATH = [env['silo_lib_path']]) |
497 |
|
conf.env.AppendUnique(LIBS = [env['silo_libs']]) |
498 |
|
if not conf.CheckCHeader('silo.h'): env['usesilo'] = 0 |
499 |
|
if not conf.CheckFunc('DBMkDir'): env['usesilo'] = 0 |
500 |
|
conf.Finish() |
501 |
|
|
502 |
|
# Add the path to Silo to environment env if it was found. |
503 |
|
# Note that we do not add the libs since they are only needed for the |
504 |
|
# escriptreader library and tools. |
505 |
|
if env['usesilo']: |
506 |
|
env.AppendUnique(CPPPATH = [env['silo_path']]) |
507 |
|
env.AppendUnique(LIBPATH = [env['silo_lib_path']]) |
508 |
|
env.Append(CPPDEFINES = ['HAVE_SILO']) |
509 |
|
|
510 |
############ Add the compiler flags ############################ |
############ Add the compiler flags ############################ |
511 |
|
|
512 |
# Enable debug by choosing either cc_debug or cc_optim |
# Enable debug by choosing either cc_debug or cc_optim |
521 |
env.Append(CCFLAGS = env['cc_flags']) |
env.Append(CCFLAGS = env['cc_flags']) |
522 |
env.Append(LIBS = [env['omp_libs']]) |
env.Append(LIBS = [env['omp_libs']]) |
523 |
|
|
524 |
|
|
525 |
|
############ Add some custom builders ########################## |
526 |
|
|
527 |
|
py_builder = Builder(action = scons_extensions.build_py, suffix = '.pyc', src_suffix = '.py', single_source=True) |
528 |
|
env.Append(BUILDERS = {'PyCompile' : py_builder}); |
529 |
|
|
530 |
|
runUnitTest_builder = Builder(action = scons_extensions.runUnitTest, suffix = '.passed', src_suffix=env['PROGSUFFIX'], single_source=True) |
531 |
|
env.Append(BUILDERS = {'RunUnitTest' : runUnitTest_builder}); |
532 |
|
|
533 |
|
runPyUnitTest_builder = Builder(action = scons_extensions.runPyUnitTest, suffix = '.passed', src_suffic='.py', single_source=True) |
534 |
|
env.Append(BUILDERS = {'RunPyUnitTest' : runPyUnitTest_builder}); |
535 |
|
|
536 |
############ MPI (optional) #################################### |
############ MPI (optional) #################################### |
537 |
|
|
538 |
# 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) |
584 |
|
|
585 |
env['useparmetis'] = env_mpi['useparmetis'] |
env['useparmetis'] = env_mpi['useparmetis'] |
586 |
|
|
587 |
|
############ Now we switch on Warnings as errors ############### |
588 |
|
|
589 |
|
#this needs to be done after configuration because the scons test files have warnings in them |
590 |
|
|
591 |
|
if ((fatalwarning != "") and (env['usewarnings'])): |
592 |
|
env.Append(CCFLAGS = fatalwarning) |
593 |
|
env_mpi.Append(CCFLAGS = fatalwarning) |
594 |
|
|
595 |
############ Summarize our environment ######################### |
############ Summarize our environment ######################### |
596 |
|
|
597 |
print "" |
print "" |
607 |
else: print " Not using MKL" |
else: print " Not using MKL" |
608 |
if env['useumfpack']: print " Using UMFPACK" |
if env['useumfpack']: print " Using UMFPACK" |
609 |
else: print " Not using UMFPACK" |
else: print " Not using UMFPACK" |
610 |
|
if env['usesilo']: print " Using Silo" |
611 |
|
else: print " Not using Silo" |
612 |
if env['useopenmp']: print " Using OpenMP" |
if env['useopenmp']: print " Using OpenMP" |
613 |
else: print " Not using OpenMP" |
else: print " Not using OpenMP" |
614 |
if env['usempi']: print " Using MPI" |
if env['usempi']: print " Using MPI" |
620 |
if env['usedebug']: print " Compiling for debug" |
if env['usedebug']: print " Compiling for debug" |
621 |
else: print " Not compiling for debug" |
else: print " Not compiling for debug" |
622 |
print " Installing in", prefix |
print " Installing in", prefix |
623 |
|
if ((fatalwarning != "") and (env['usewarnings'])): print " Treating warnings as errors" |
624 |
|
else: print " Not treating warnings as errors" |
625 |
print "" |
print "" |
626 |
|
|
627 |
############ Delete option-dependent files ##################### |
############ Delete option-dependent files ##################### |
631 |
Execute(Delete(env['libinstall'] + "/Compiled.with.openmp")) |
Execute(Delete(env['libinstall'] + "/Compiled.with.openmp")) |
632 |
if not env['usempi']: Execute(Delete(env['libinstall'] + "/pythonMPI")) |
if not env['usempi']: Execute(Delete(env['libinstall'] + "/pythonMPI")) |
633 |
|
|
|
############ Add some custom builders ########################## |
|
634 |
|
|
635 |
py_builder = Builder(action = scons_extensions.build_py, suffix = '.pyc', src_suffix = '.py', single_source=True) |
############ Build the subdirectories ########################## |
|
env.Append(BUILDERS = {'PyCompile' : py_builder}); |
|
636 |
|
|
637 |
runUnitTest_builder = Builder(action = scons_extensions.runUnitTest, suffix = '.passed', src_suffix=env['PROGSUFFIX'], single_source=True) |
from grouptest import * |
|
env.Append(BUILDERS = {'RunUnitTest' : runUnitTest_builder}); |
|
638 |
|
|
639 |
runPyUnitTest_builder = Builder(action = scons_extensions.runPyUnitTest, suffix = '.passed', src_suffic='.py', single_source=True) |
TestGroups=[] |
|
env.Append(BUILDERS = {'RunPyUnitTest' : runPyUnitTest_builder}); |
|
|
|
|
|
############ Build the subdirectories ########################## |
|
640 |
|
|
641 |
Export(["env", "env_mpi", "clone_env"]) |
Export( |
642 |
|
["env", |
643 |
|
"env_mpi", |
644 |
|
"clone_env", |
645 |
|
"IS_WINDOWS_PLATFORM", |
646 |
|
"TestGroups" |
647 |
|
] |
648 |
|
) |
649 |
|
|
650 |
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) |
651 |
|
env.SConscript(dirs = ['tools/libescriptreader/src'], build_dir='build/$PLATFORM/tools/libescriptreader', duplicate=0) |
652 |
env.SConscript(dirs = ['paso/src'], build_dir='build/$PLATFORM/paso', duplicate=0) |
env.SConscript(dirs = ['paso/src'], build_dir='build/$PLATFORM/paso', duplicate=0) |
653 |
env.SConscript(dirs = ['escript/src'], build_dir='build/$PLATFORM/escript', duplicate=0) |
env.SConscript(dirs = ['escript/src'], build_dir='build/$PLATFORM/escript', duplicate=0) |
654 |
env.SConscript(dirs = ['esysUtils/src'], build_dir='build/$PLATFORM/esysUtils', duplicate=0) |
env.SConscript(dirs = ['esysUtils/src'], build_dir='build/$PLATFORM/esysUtils', duplicate=0) |
659 |
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) |
660 |
env.SConscript(dirs = ['pythonMPI/src'], build_dir='build/$PLATFORM/pythonMPI', duplicate=0) |
env.SConscript(dirs = ['pythonMPI/src'], build_dir='build/$PLATFORM/pythonMPI', duplicate=0) |
661 |
env.SConscript(dirs = ['scripts'], build_dir='build/$PLATFORM/scripts', duplicate=0) |
env.SConscript(dirs = ['scripts'], build_dir='build/$PLATFORM/scripts', duplicate=0) |
662 |
|
env.SConscript(dirs = ['paso/profiling'], build_dir='build/$PLATFORM/paso/profiling', duplicate=0) |
663 |
|
|
664 |
|
|
665 |
############ Remember what optimizations we used ############### |
############ Remember what optimizations we used ############### |
666 |
|
|
702 |
build_all_list += ['build_escript'] |
build_all_list += ['build_escript'] |
703 |
build_all_list += ['build_finley'] |
build_all_list += ['build_finley'] |
704 |
if env['usempi']: build_all_list += ['target_pythonMPI_exe'] |
if env['usempi']: build_all_list += ['target_pythonMPI_exe'] |
705 |
if not IS_WINDOWS_PLATFORM: build_all_list += ['target_finley_wrapper'] |
if not IS_WINDOWS_PLATFORM: build_all_list += ['target_escript_wrapper'] |
706 |
|
if env['usesilo']: build_all_list += ['target_escript2silo'] |
707 |
env.Alias('build_all', build_all_list) |
env.Alias('build_all', build_all_list) |
708 |
|
|
709 |
install_all_list = [] |
install_all_list = [] |
716 |
install_all_list += ['target_install_modellib_py'] |
install_all_list += ['target_install_modellib_py'] |
717 |
install_all_list += ['target_install_pycad_py'] |
install_all_list += ['target_install_pycad_py'] |
718 |
if env['usempi']: install_all_list += ['target_install_pythonMPI_exe'] |
if env['usempi']: install_all_list += ['target_install_pythonMPI_exe'] |
719 |
if not IS_WINDOWS_PLATFORM: install_all_list += ['target_install_finley_wrapper'] |
if not IS_WINDOWS_PLATFORM: install_all_list += ['target_install_escript_wrapper'] |
720 |
|
if env['usesilo']: install_all_list += ['target_install_escript2silo'] |
721 |
install_all_list += ['remember_options'] |
install_all_list += ['remember_options'] |
722 |
env.Alias('install_all', install_all_list) |
env.Alias('install_all', install_all_list) |
723 |
|
|
730 |
env.Alias('install_cppunittest', ['build_cppunittest', 'target_install_cppunittest_a']) |
env.Alias('install_cppunittest', ['build_cppunittest', 'target_install_cppunittest_a']) |
731 |
env.Alias('run_tests', ['install_all', 'target_install_cppunittest_a']) |
env.Alias('run_tests', ['install_all', 'target_install_cppunittest_a']) |
732 |
env.Alias('all_tests', ['install_all', 'target_install_cppunittest_a', 'run_tests', 'py_tests']) |
env.Alias('all_tests', ['install_all', 'target_install_cppunittest_a', 'run_tests', 'py_tests']) |
733 |
|
env.Alias('build_full',['install_all','build_tests','build_py_tests']) |
734 |
|
|
735 |
############ Targets to build the documentation ################ |
############ Targets to build the documentation ################ |
736 |
|
|
737 |
env.Alias('docs', ['examples_tarfile', 'examples_zipfile', 'api_epydoc', 'api_doxygen', 'guide_pdf', 'guide_html']) |
env.Alias('docs', ['examples_tarfile', 'examples_zipfile', 'api_epydoc', 'api_doxygen', 'guide_pdf', 'guide_html']) |
738 |
|
|
739 |
|
if not IS_WINDOWS_PLATFORM: |
740 |
|
try: |
741 |
|
utest=open("utest.sh","w") |
742 |
|
build_platform=os.name #Sometimes Mac python says it is posix |
743 |
|
if (build_platform=='posix') and platform.system()=="Darwin": |
744 |
|
build_platform='darwin' |
745 |
|
utest.write(GroupTest.makeHeader(build_platform)) |
746 |
|
for tests in TestGroups: |
747 |
|
utest.write(tests.makeString()) |
748 |
|
utest.close() |
749 |
|
print "utest.sh written" |
750 |
|
except IOError: |
751 |
|
print "Error attempting to write unittests file." |
752 |
|
sys.exit(1) |
753 |
|
|