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), |
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). |
# An option for specifying the compiler tools set (see windows branch). |
131 |
('tools_names', 'allow control over the tools in the env setup', ['intelc']) |
('tools_names', 'allow control over the tools in the env setup', ['intelc']), |
132 |
|
# finer control over library building, intel aggressive global optimisation |
133 |
|
# works with dynamic libraries on windows. |
134 |
|
('share_esysUtils', 'control static or dynamic esysUtils lib', False), |
135 |
|
('share_paso', 'control static or dynamic paso lib', False) |
136 |
) |
) |
137 |
|
|
138 |
############ Specify which compilers to use #################### |
############ Specify which compilers to use #################### |
164 |
# 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) |
165 |
# 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 |
166 |
|
|
167 |
|
sysheaderopt = "" # how do we indicate that a header is a system header. Use "" for no action. |
168 |
|
|
169 |
if env["CC"] == "icc": |
if env["CC"] == "icc": |
170 |
# Intel compilers |
# Intel compilers |
171 |
cc_flags = "-fPIC -ansi -wd161 -w1 -vec-report0 -DBLOCKTIMER -DCORE_ID1" |
cc_flags = "-fPIC -ansi -wd161 -w1 -vec-report0 -DBLOCKTIMER -DCORE_ID1" |
175 |
omp_debug = "-openmp -openmp_report0" |
omp_debug = "-openmp -openmp_report0" |
176 |
omp_libs = ['guide', 'pthread'] |
omp_libs = ['guide', 'pthread'] |
177 |
pedantic = "" |
pedantic = "" |
178 |
|
fatalwarning = "" # Switch to turn warnings into errors |
179 |
|
sysheaderopt = "" |
180 |
elif env["CC"] == "gcc": |
elif env["CC"] == "gcc": |
181 |
# GNU C on any system |
# GNU C on any system |
182 |
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" |
183 |
|
#the long long warning occurs on the Mac |
184 |
cc_optim = "-O3" |
cc_optim = "-O3" |
185 |
cc_debug = "-g -O0 -DDOASSERT -DDOPROF -DBOUNDS_CHECK" |
cc_debug = "-g -O0 -DDOASSERT -DDOPROF -DBOUNDS_CHECK" |
186 |
omp_optim = "" |
omp_optim = "" |
187 |
omp_debug = "" |
omp_debug = "" |
188 |
omp_libs = [] |
omp_libs = [] |
189 |
pedantic = "-pedantic-errors -Wno-long-long" |
pedantic = "-pedantic-errors -Wno-long-long" |
190 |
|
fatalwarning = "-Werror" |
191 |
|
sysheaderopt = "-isystem " |
192 |
elif env["CC"] == "cl": |
elif env["CC"] == "cl": |
193 |
# Microsoft Visual C on Windows |
# Microsoft Visual C on Windows |
194 |
cc_flags = "/FD /EHsc /GR /wd4068 -D_USE_MATH_DEFINES -DDLL_NETCDF" |
cc_flags = "/FD /EHsc /GR /wd4068 -D_USE_MATH_DEFINES -DDLL_NETCDF" |
198 |
omp_debug = "" |
omp_debug = "" |
199 |
omp_libs = [] |
omp_libs = [] |
200 |
pedantic = "" |
pedantic = "" |
201 |
|
fatalwarning = "" |
202 |
|
sysheaderopt = "" |
203 |
elif env["CC"] == "icl": |
elif env["CC"] == "icl": |
204 |
# intel C on Windows, see windows_msvc71_options.py for a start |
# intel C on Windows, see windows_intelc_options.py for a start |
205 |
pedantic = "" |
pedantic = "" |
206 |
|
fatalwarning = "" |
207 |
|
sysheaderopt = "" |
208 |
|
|
209 |
|
|
210 |
# If not specified in hostname_options.py then set them here |
# If not specified in hostname_options.py then set them here |
211 |
if env["cc_flags"] == "-DEFAULT_1": env['cc_flags'] = cc_flags |
if env["cc_flags"] == "-DEFAULT_1": env['cc_flags'] = cc_flags |
275 |
# Add cc option -L<Escript>/trunk/lib |
# Add cc option -L<Escript>/trunk/lib |
276 |
env.Append(LIBPATH = [Dir(env['libinstall'])]) |
env.Append(LIBPATH = [Dir(env['libinstall'])]) |
277 |
|
|
|
env.Append(CPPDEFINES = ['ESCRIPT_EXPORTS', 'FINLEY_EXPORTS']) |
|
|
|
|
278 |
if env['cc_extra'] != '': env.Append(CCFLAGS = env['cc_extra']) |
if env['cc_extra'] != '': env.Append(CCFLAGS = env['cc_extra']) |
279 |
if env['ld_extra'] != '': env.Append(LINKFLAGS = env['ld_extra']) |
if env['ld_extra'] != '': env.Append(LINKFLAGS = env['ld_extra']) |
280 |
|
|
284 |
if IS_WINDOWS_PLATFORM: |
if IS_WINDOWS_PLATFORM: |
285 |
env.PrependENVPath('PATH', [env['boost_lib_path']]) |
env.PrependENVPath('PATH', [env['boost_lib_path']]) |
286 |
env.PrependENVPath('PATH', [env['libinstall']]) |
env.PrependENVPath('PATH', [env['libinstall']]) |
287 |
|
if not env['share_esysUtils'] : |
288 |
|
env.Append(CPPDEFINES = ['ESYSUTILS_STATIC_LIB']) |
289 |
|
if not env['share_paso'] : |
290 |
|
env.Append(CPPDEFINES = ['PASO_STATIC_LIB']) |
291 |
|
|
292 |
if env['usenetcdf']: |
if env['usenetcdf']: |
293 |
env.PrependENVPath('PATH', [env['netCDF_lib_path']]) |
env.PrependENVPath('PATH', [env['netCDF_lib_path']]) |
294 |
|
|
327 |
|
|
328 |
############ python libraries (required) ####################### |
############ python libraries (required) ####################### |
329 |
|
|
330 |
conf.env.AppendUnique(CPPPATH = [env['python_path']]) |
|
331 |
|
if not sysheaderopt =="": |
332 |
|
conf.env.Append(CCFLAGS=sysheaderopt+env['python_path']) |
333 |
|
else: |
334 |
|
conf.env.AppendUnique(CPPPATH = [env['python_path']]) |
335 |
|
|
336 |
conf.env.AppendUnique(LIBPATH = [env['python_lib_path']]) |
conf.env.AppendUnique(LIBPATH = [env['python_lib_path']]) |
337 |
conf.env.AppendUnique(LIBS = [env['python_libs']]) |
conf.env.AppendUnique(LIBS = [env['python_libs']]) |
338 |
|
|
347 |
|
|
348 |
############ boost (required) ################################## |
############ boost (required) ################################## |
349 |
|
|
350 |
conf.env.AppendUnique(CPPPATH = [env['boost_path']]) |
if not sysheaderopt =="": |
351 |
|
conf.env.Append(CCFLAGS=sysheaderopt+env['boost_path']+'boost') |
352 |
|
else: |
353 |
|
conf.env.AppendUnique(CPPPATH = [env['boost_path']]) |
354 |
|
|
355 |
conf.env.AppendUnique(LIBPATH = [env['boost_lib_path']]) |
conf.env.AppendUnique(LIBPATH = [env['boost_lib_path']]) |
356 |
conf.env.AppendUnique(LIBS = [env['boost_libs']]) |
conf.env.AppendUnique(LIBS = [env['boost_libs']]) |
357 |
|
|
464 |
|
|
465 |
if env['useumfpack'] and not conf.CheckCHeader('umfpack.h'): env['useumfpack'] = 0 |
if env['useumfpack'] and not conf.CheckCHeader('umfpack.h'): env['useumfpack'] = 0 |
466 |
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 |
467 |
|
if env['useumfpack'] and not conf.CheckFunc('daxpy'): env['useumfpack'] = 0 # this does not work on shake73? |
468 |
|
|
469 |
# Add UMFPACK to environment env if it was found |
# Add UMFPACK to environment env if it was found |
470 |
if env['useumfpack']: |
if env['useumfpack']: |
538 |
|
|
539 |
env['useparmetis'] = env_mpi['useparmetis'] |
env['useparmetis'] = env_mpi['useparmetis'] |
540 |
|
|
541 |
|
############ Now we switch on Warnings as errors ############### |
542 |
|
|
543 |
|
#this needs to be done after configuration because the scons test files have warnings in them |
544 |
|
|
545 |
|
if ((fatalwarning != "") and (env['usewarnings'])): |
546 |
|
env.Append(CCFLAGS = fatalwarning) |
547 |
|
env_mpi.Append(CCFLAGS = fatalwarning) |
548 |
|
|
549 |
############ Summarize our environment ######################### |
############ Summarize our environment ######################### |
550 |
|
|
551 |
print "" |
print "" |
572 |
if env['usedebug']: print " Compiling for debug" |
if env['usedebug']: print " Compiling for debug" |
573 |
else: print " Not compiling for debug" |
else: print " Not compiling for debug" |
574 |
print " Installing in", prefix |
print " Installing in", prefix |
575 |
|
if ((fatalwarning != "") and (env['usewarnings'])): print " Treating warnings as errors" |
576 |
|
else: print " Not treating warnings as errors" |
577 |
print "" |
print "" |
578 |
|
|
579 |
############ Delete option-dependent files ##################### |
############ Delete option-dependent files ##################### |
596 |
|
|
597 |
############ Build the subdirectories ########################## |
############ Build the subdirectories ########################## |
598 |
|
|
599 |
Export(["env", "env_mpi", "clone_env"]) |
Export( |
600 |
|
["env", |
601 |
|
"env_mpi", |
602 |
|
"clone_env", |
603 |
|
"IS_WINDOWS_PLATFORM" |
604 |
|
] |
605 |
|
) |
606 |
|
|
607 |
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) |
608 |
env.SConscript(dirs = ['paso/src'], build_dir='build/$PLATFORM/paso', duplicate=0) |
env.SConscript(dirs = ['paso/src'], build_dir='build/$PLATFORM/paso', duplicate=0) |