119 |
('umf_path', 'Path to UMFPACK includes', '/usr/include/suitesparse'), |
('umf_path', 'Path to UMFPACK includes', '/usr/include/suitesparse'), |
120 |
('umf_lib_path', 'Path to UMFPACK libs', usr_lib), |
('umf_lib_path', 'Path to UMFPACK libs', usr_lib), |
121 |
('umf_libs', 'UMFPACK libraries to link with', ['umfpack']), |
('umf_libs', 'UMFPACK libraries to link with', ['umfpack']), |
122 |
|
# Silo |
123 |
|
BoolOption('usesilo', 'switch on/off the usage of Silo', 'yes'), |
124 |
|
('silo_path', 'Path to Silo includes', '/usr/include'), |
125 |
|
('silo_lib_path', 'Path to Silo libs', usr_lib), |
126 |
|
('silo_libs', 'Silo libraries to link with', ['siloh5', 'hdf5']), |
127 |
# AMD (used by UMFPACK) |
# AMD (used by UMFPACK) |
128 |
('amd_path', 'Path to AMD includes', '/usr/include/suitesparse'), |
('amd_path', 'Path to AMD includes', '/usr/include/suitesparse'), |
129 |
('amd_lib_path', 'Path to AMD libs', usr_lib), |
('amd_lib_path', 'Path to AMD libs', usr_lib), |
169 |
# 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) |
170 |
# 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 |
171 |
|
|
172 |
|
sysheaderopt = "" # how do we indicate that a header is a system header. Use "" for no action. |
173 |
|
|
174 |
if env["CC"] == "icc": |
if env["CC"] == "icc": |
175 |
# Intel compilers |
# Intel compilers |
176 |
cc_flags = "-fPIC -ansi -wd161 -w1 -vec-report0 -DBLOCKTIMER -DCORE_ID1" |
cc_flags = "-fPIC -ansi -wd161 -w1 -vec-report0 -DBLOCKTIMER -DCORE_ID1" |
181 |
omp_libs = ['guide', 'pthread'] |
omp_libs = ['guide', 'pthread'] |
182 |
pedantic = "" |
pedantic = "" |
183 |
fatalwarning = "" # Switch to turn warnings into errors |
fatalwarning = "" # Switch to turn warnings into errors |
184 |
|
sysheaderopt = "" |
185 |
elif env["CC"] == "gcc": |
elif env["CC"] == "gcc": |
186 |
# GNU C on any system |
# GNU C on any system |
187 |
cc_flags = "-pedantic -Wall -fPIC -ansi -ffast-math -Wno-unknown-pragmas -DBLOCKTIMER -isystem " + env['boost_path'] + "/boost -isystem " + env['python_path'] + " -Wno-sign-compare -Wno-system-headers -Wno-strict-aliasing" |
cc_flags = "-pedantic -Wall -fPIC -ansi -ffast-math -Wno-unknown-pragmas -DBLOCKTIMER -Wno-sign-compare -Wno-system-headers -Wno-long-long -Wno-strict-aliasing" |
188 |
#the strict aliasing warning is triggered by some type punning in the boost headers for version 1.34 |
#the long long warning occurs on the Mac |
|
#isystem does not seem to prevent this |
|
189 |
cc_optim = "-O3" |
cc_optim = "-O3" |
190 |
cc_debug = "-g -O0 -DDOASSERT -DDOPROF -DBOUNDS_CHECK" |
cc_debug = "-g -O0 -DDOASSERT -DDOPROF -DBOUNDS_CHECK" |
191 |
omp_optim = "" |
omp_optim = "" |
193 |
omp_libs = [] |
omp_libs = [] |
194 |
pedantic = "-pedantic-errors -Wno-long-long" |
pedantic = "-pedantic-errors -Wno-long-long" |
195 |
fatalwarning = "-Werror" |
fatalwarning = "-Werror" |
196 |
|
sysheaderopt = "-isystem " |
197 |
elif env["CC"] == "cl": |
elif env["CC"] == "cl": |
198 |
# Microsoft Visual C on Windows |
# Microsoft Visual C on Windows |
199 |
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_libs = [] |
omp_libs = [] |
205 |
pedantic = "" |
pedantic = "" |
206 |
fatalwarning = "" |
fatalwarning = "" |
207 |
|
sysheaderopt = "" |
208 |
elif env["CC"] == "icl": |
elif env["CC"] == "icl": |
209 |
# intel C on Windows, see windows_intelc_options.py for a start |
# intel C on Windows, see windows_intelc_options.py for a start |
210 |
pedantic = "" |
pedantic = "" |
211 |
fatalwarning = "" |
fatalwarning = "" |
212 |
|
sysheaderopt = "" |
213 |
|
|
214 |
|
|
215 |
# If not specified in hostname_options.py then set them here |
# If not specified in hostname_options.py then set them here |
216 |
if env["cc_flags"] == "-DEFAULT_1": env['cc_flags'] = cc_flags |
if env["cc_flags"] == "-DEFAULT_1": env['cc_flags'] = cc_flags |
332 |
|
|
333 |
############ python libraries (required) ####################### |
############ python libraries (required) ####################### |
334 |
|
|
335 |
conf.env.AppendUnique(CPPPATH = [env['python_path']]) |
|
336 |
|
if not sysheaderopt =="": |
337 |
|
conf.env.Append(CCFLAGS=sysheaderopt+env['python_path']) |
338 |
|
else: |
339 |
|
conf.env.AppendUnique(CPPPATH = [env['python_path']]) |
340 |
|
|
341 |
conf.env.AppendUnique(LIBPATH = [env['python_lib_path']]) |
conf.env.AppendUnique(LIBPATH = [env['python_lib_path']]) |
342 |
conf.env.AppendUnique(LIBS = [env['python_libs']]) |
conf.env.AppendUnique(LIBS = [env['python_libs']]) |
343 |
|
|
352 |
|
|
353 |
############ boost (required) ################################## |
############ boost (required) ################################## |
354 |
|
|
355 |
conf.env.AppendUnique(CPPPATH = [env['boost_path']]) |
if not sysheaderopt =="": |
356 |
|
conf.env.Append(CCFLAGS=sysheaderopt+env['boost_path']+'boost') |
357 |
|
else: |
358 |
|
conf.env.AppendUnique(CPPPATH = [env['boost_path']]) |
359 |
|
|
360 |
conf.env.AppendUnique(LIBPATH = [env['boost_lib_path']]) |
conf.env.AppendUnique(LIBPATH = [env['boost_lib_path']]) |
361 |
conf.env.AppendUnique(LIBS = [env['boost_libs']]) |
conf.env.AppendUnique(LIBS = [env['boost_libs']]) |
362 |
|
|
469 |
|
|
470 |
if env['useumfpack'] and not conf.CheckCHeader('umfpack.h'): env['useumfpack'] = 0 |
if env['useumfpack'] and not conf.CheckCHeader('umfpack.h'): env['useumfpack'] = 0 |
471 |
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 |
472 |
|
if env['useumfpack'] and not conf.CheckFunc('daxpy'): env['useumfpack'] = 0 # this does not work on shake73? |
473 |
|
|
474 |
# Add UMFPACK to environment env if it was found |
# Add UMFPACK to environment env if it was found |
475 |
if env['useumfpack']: |
if env['useumfpack']: |
478 |
else: |
else: |
479 |
conf.Finish() |
conf.Finish() |
480 |
|
|
481 |
|
############ Silo (optional) ################################### |
482 |
|
|
483 |
|
if env['usesilo']: |
484 |
|
conf = Configure(clone_env(env)) |
485 |
|
conf.env.AppendUnique(CPPPATH = [env['silo_path']]) |
486 |
|
conf.env.AppendUnique(LIBPATH = [env['silo_lib_path']]) |
487 |
|
conf.env.AppendUnique(LIBS = [env['silo_libs']]) |
488 |
|
if not conf.CheckCHeader('silo.h'): env['usesilo'] = 0 |
489 |
|
if not conf.CheckFunc('DBMkDir'): env['usesilo'] = 0 |
490 |
|
conf.Finish() |
491 |
|
|
492 |
|
# Add the path to Silo to environment env if it was found. |
493 |
|
# Note that we do not add the libs since they are only needed for the |
494 |
|
# escriptreader library and tools. |
495 |
|
if env['usesilo']: |
496 |
|
env.AppendUnique(CPPPATH = [env['silo_path']]) |
497 |
|
env.AppendUnique(LIBPATH = [env['silo_lib_path']]) |
498 |
|
env.Append(CPPDEFINES = ['HAVE_SILO']) |
499 |
|
|
500 |
############ Add the compiler flags ############################ |
############ Add the compiler flags ############################ |
501 |
|
|
502 |
# Enable debug by choosing either cc_debug or cc_optim |
# Enable debug by choosing either cc_debug or cc_optim |
511 |
env.Append(CCFLAGS = env['cc_flags']) |
env.Append(CCFLAGS = env['cc_flags']) |
512 |
env.Append(LIBS = [env['omp_libs']]) |
env.Append(LIBS = [env['omp_libs']]) |
513 |
|
|
514 |
|
|
515 |
|
############ Add some custom builders ########################## |
516 |
|
|
517 |
|
py_builder = Builder(action = scons_extensions.build_py, suffix = '.pyc', src_suffix = '.py', single_source=True) |
518 |
|
env.Append(BUILDERS = {'PyCompile' : py_builder}); |
519 |
|
|
520 |
|
runUnitTest_builder = Builder(action = scons_extensions.runUnitTest, suffix = '.passed', src_suffix=env['PROGSUFFIX'], single_source=True) |
521 |
|
env.Append(BUILDERS = {'RunUnitTest' : runUnitTest_builder}); |
522 |
|
|
523 |
|
runPyUnitTest_builder = Builder(action = scons_extensions.runPyUnitTest, suffix = '.passed', src_suffic='.py', single_source=True) |
524 |
|
env.Append(BUILDERS = {'RunPyUnitTest' : runPyUnitTest_builder}); |
525 |
|
|
526 |
############ MPI (optional) #################################### |
############ MPI (optional) #################################### |
527 |
|
|
528 |
# 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) |
597 |
else: print " Not using MKL" |
else: print " Not using MKL" |
598 |
if env['useumfpack']: print " Using UMFPACK" |
if env['useumfpack']: print " Using UMFPACK" |
599 |
else: print " Not using UMFPACK" |
else: print " Not using UMFPACK" |
600 |
|
if env['usesilo']: print " Using Silo" |
601 |
|
else: print " Not using Silo" |
602 |
if env['useopenmp']: print " Using OpenMP" |
if env['useopenmp']: print " Using OpenMP" |
603 |
else: print " Not using OpenMP" |
else: print " Not using OpenMP" |
604 |
if env['usempi']: print " Using MPI" |
if env['usempi']: print " Using MPI" |
621 |
Execute(Delete(env['libinstall'] + "/Compiled.with.openmp")) |
Execute(Delete(env['libinstall'] + "/Compiled.with.openmp")) |
622 |
if not env['usempi']: Execute(Delete(env['libinstall'] + "/pythonMPI")) |
if not env['usempi']: Execute(Delete(env['libinstall'] + "/pythonMPI")) |
623 |
|
|
|
############ Add some custom builders ########################## |
|
|
|
|
|
py_builder = Builder(action = scons_extensions.build_py, suffix = '.pyc', src_suffix = '.py', single_source=True) |
|
|
env.Append(BUILDERS = {'PyCompile' : py_builder}); |
|
|
|
|
|
runUnitTest_builder = Builder(action = scons_extensions.runUnitTest, suffix = '.passed', src_suffix=env['PROGSUFFIX'], single_source=True) |
|
|
env.Append(BUILDERS = {'RunUnitTest' : runUnitTest_builder}); |
|
|
|
|
|
runPyUnitTest_builder = Builder(action = scons_extensions.runPyUnitTest, suffix = '.passed', src_suffic='.py', single_source=True) |
|
|
env.Append(BUILDERS = {'RunPyUnitTest' : runPyUnitTest_builder}); |
|
624 |
|
|
625 |
############ Build the subdirectories ########################## |
############ Build the subdirectories ########################## |
626 |
|
|
633 |
) |
) |
634 |
|
|
635 |
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) |
636 |
|
env.SConscript(dirs = ['tools/libescriptreader/src'], build_dir='build/$PLATFORM/tools/libescriptreader', duplicate=0) |
637 |
env.SConscript(dirs = ['paso/src'], build_dir='build/$PLATFORM/paso', duplicate=0) |
env.SConscript(dirs = ['paso/src'], build_dir='build/$PLATFORM/paso', duplicate=0) |
638 |
env.SConscript(dirs = ['escript/src'], build_dir='build/$PLATFORM/escript', duplicate=0) |
env.SConscript(dirs = ['escript/src'], build_dir='build/$PLATFORM/escript', duplicate=0) |
639 |
env.SConscript(dirs = ['esysUtils/src'], build_dir='build/$PLATFORM/esysUtils', duplicate=0) |
env.SConscript(dirs = ['esysUtils/src'], build_dir='build/$PLATFORM/esysUtils', duplicate=0) |
644 |
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) |
645 |
env.SConscript(dirs = ['pythonMPI/src'], build_dir='build/$PLATFORM/pythonMPI', duplicate=0) |
env.SConscript(dirs = ['pythonMPI/src'], build_dir='build/$PLATFORM/pythonMPI', duplicate=0) |
646 |
env.SConscript(dirs = ['scripts'], build_dir='build/$PLATFORM/scripts', duplicate=0) |
env.SConscript(dirs = ['scripts'], build_dir='build/$PLATFORM/scripts', duplicate=0) |
647 |
|
env.SConscript(dirs = ['paso/profiling'], build_dir='build/$PLATFORM/paso/profiling', duplicate=0) |
648 |
|
|
649 |
############ Remember what optimizations we used ############### |
############ Remember what optimizations we used ############### |
650 |
|
|
687 |
build_all_list += ['build_finley'] |
build_all_list += ['build_finley'] |
688 |
if env['usempi']: build_all_list += ['target_pythonMPI_exe'] |
if env['usempi']: build_all_list += ['target_pythonMPI_exe'] |
689 |
if not IS_WINDOWS_PLATFORM: build_all_list += ['target_finley_wrapper'] |
if not IS_WINDOWS_PLATFORM: build_all_list += ['target_finley_wrapper'] |
690 |
|
if env['usesilo']: build_all_list += ['target_escript2silo'] |
691 |
env.Alias('build_all', build_all_list) |
env.Alias('build_all', build_all_list) |
692 |
|
|
693 |
install_all_list = [] |
install_all_list = [] |
701 |
install_all_list += ['target_install_pycad_py'] |
install_all_list += ['target_install_pycad_py'] |
702 |
if env['usempi']: install_all_list += ['target_install_pythonMPI_exe'] |
if env['usempi']: install_all_list += ['target_install_pythonMPI_exe'] |
703 |
if not IS_WINDOWS_PLATFORM: install_all_list += ['target_install_finley_wrapper'] |
if not IS_WINDOWS_PLATFORM: install_all_list += ['target_install_finley_wrapper'] |
704 |
|
if env['usesilo']: install_all_list += ['target_install_escript2silo'] |
705 |
install_all_list += ['remember_options'] |
install_all_list += ['remember_options'] |
706 |
env.Alias('install_all', install_all_list) |
env.Alias('install_all', install_all_list) |
707 |
|
|