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), |
133 |
('blas_lib_path', 'Path to BLAS libs', usr_lib), |
('blas_lib_path', 'Path to BLAS libs', usr_lib), |
134 |
('blas_libs', 'BLAS libraries to link with', ['blas']), |
('blas_libs', 'BLAS libraries to link with', ['blas']), |
135 |
# An option for specifying the compiler tools set (see windows branch). |
# An option for specifying the compiler tools set (see windows branch). |
136 |
('tools_names', 'allow control over the tools in the env setup', ['intelc']) |
('tools_names', 'allow control over the tools in the env setup', ['intelc']), |
137 |
|
# finer control over library building, intel aggressive global optimisation |
138 |
|
# works with dynamic libraries on windows. |
139 |
|
('share_esysUtils', 'control static or dynamic esysUtils lib', False), |
140 |
|
('share_paso', 'control static or dynamic paso lib', False) |
141 |
) |
) |
142 |
|
|
143 |
############ Specify which compilers to use #################### |
############ Specify which compilers to use #################### |
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'] + " -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" |
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 |
289 |
if IS_WINDOWS_PLATFORM: |
if IS_WINDOWS_PLATFORM: |
290 |
env.PrependENVPath('PATH', [env['boost_lib_path']]) |
env.PrependENVPath('PATH', [env['boost_lib_path']]) |
291 |
env.PrependENVPath('PATH', [env['libinstall']]) |
env.PrependENVPath('PATH', [env['libinstall']]) |
292 |
|
if not env['share_esysUtils'] : |
293 |
|
env.Append(CPPDEFINES = ['ESYSUTILS_STATIC_LIB']) |
294 |
|
if not env['share_paso'] : |
295 |
|
env.Append(CPPDEFINES = ['PASO_STATIC_LIB']) |
296 |
|
|
297 |
if env['usenetcdf']: |
if env['usenetcdf']: |
298 |
env.PrependENVPath('PATH', [env['netCDF_lib_path']]) |
env.PrependENVPath('PATH', [env['netCDF_lib_path']]) |
299 |
|
|
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 |
585 |
else: print " Not using MKL" |
else: print " Not using MKL" |
586 |
if env['useumfpack']: print " Using UMFPACK" |
if env['useumfpack']: print " Using UMFPACK" |
587 |
else: print " Not using UMFPACK" |
else: print " Not using UMFPACK" |
588 |
|
if env['usesilo']: print " Using Silo" |
589 |
|
else: print " Not using Silo" |
590 |
if env['useopenmp']: print " Using OpenMP" |
if env['useopenmp']: print " Using OpenMP" |
591 |
else: print " Not using OpenMP" |
else: print " Not using OpenMP" |
592 |
if env['usempi']: print " Using MPI" |
if env['usempi']: print " Using MPI" |
631 |
) |
) |
632 |
|
|
633 |
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) |
634 |
|
env.SConscript(dirs = ['tools/libescriptreader/src'], build_dir='build/$PLATFORM/tools/libescriptreader', duplicate=0) |
635 |
env.SConscript(dirs = ['paso/src'], build_dir='build/$PLATFORM/paso', duplicate=0) |
env.SConscript(dirs = ['paso/src'], build_dir='build/$PLATFORM/paso', duplicate=0) |
636 |
env.SConscript(dirs = ['escript/src'], build_dir='build/$PLATFORM/escript', duplicate=0) |
env.SConscript(dirs = ['escript/src'], build_dir='build/$PLATFORM/escript', duplicate=0) |
637 |
env.SConscript(dirs = ['esysUtils/src'], build_dir='build/$PLATFORM/esysUtils', duplicate=0) |
env.SConscript(dirs = ['esysUtils/src'], build_dir='build/$PLATFORM/esysUtils', duplicate=0) |
642 |
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) |
643 |
env.SConscript(dirs = ['pythonMPI/src'], build_dir='build/$PLATFORM/pythonMPI', duplicate=0) |
env.SConscript(dirs = ['pythonMPI/src'], build_dir='build/$PLATFORM/pythonMPI', duplicate=0) |
644 |
env.SConscript(dirs = ['scripts'], build_dir='build/$PLATFORM/scripts', duplicate=0) |
env.SConscript(dirs = ['scripts'], build_dir='build/$PLATFORM/scripts', duplicate=0) |
645 |
|
env.SConscript(dirs = ['paso/profiling'], build_dir='build/$PLATFORM/paso/profiling', duplicate=0) |
646 |
|
|
647 |
############ Remember what optimizations we used ############### |
############ Remember what optimizations we used ############### |
648 |
|
|
685 |
build_all_list += ['build_finley'] |
build_all_list += ['build_finley'] |
686 |
if env['usempi']: build_all_list += ['target_pythonMPI_exe'] |
if env['usempi']: build_all_list += ['target_pythonMPI_exe'] |
687 |
if not IS_WINDOWS_PLATFORM: build_all_list += ['target_finley_wrapper'] |
if not IS_WINDOWS_PLATFORM: build_all_list += ['target_finley_wrapper'] |
688 |
|
if env['usesilo']: build_all_list += ['target_escript2silo'] |
689 |
env.Alias('build_all', build_all_list) |
env.Alias('build_all', build_all_list) |
690 |
|
|
691 |
install_all_list = [] |
install_all_list = [] |
699 |
install_all_list += ['target_install_pycad_py'] |
install_all_list += ['target_install_pycad_py'] |
700 |
if env['usempi']: install_all_list += ['target_install_pythonMPI_exe'] |
if env['usempi']: install_all_list += ['target_install_pythonMPI_exe'] |
701 |
if not IS_WINDOWS_PLATFORM: install_all_list += ['target_install_finley_wrapper'] |
if not IS_WINDOWS_PLATFORM: install_all_list += ['target_install_finley_wrapper'] |
702 |
|
if env['usesilo']: install_all_list += ['target_install_escript2silo'] |
703 |
install_all_list += ['remember_options'] |
install_all_list += ['remember_options'] |
704 |
env.Alias('install_all', install_all_list) |
env.Alias('install_all', install_all_list) |
705 |
|
|