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" |
176 |
omp_libs = ['guide', 'pthread'] |
omp_libs = ['guide', 'pthread'] |
177 |
pedantic = "" |
pedantic = "" |
178 |
fatalwarning = "" # Switch to turn warnings into errors |
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 = "-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" |
183 |
#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 |
|
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 = "" |
188 |
omp_libs = [] |
omp_libs = [] |
189 |
pedantic = "-pedantic-errors -Wno-long-long" |
pedantic = "-pedantic-errors -Wno-long-long" |
190 |
fatalwarning = "-Werror" |
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" |
199 |
omp_libs = [] |
omp_libs = [] |
200 |
pedantic = "" |
pedantic = "" |
201 |
fatalwarning = "" |
fatalwarning = "" |
202 |
|
sysheaderopt = "" |
203 |
elif env["CC"] == "icl": |
elif env["CC"] == "icl": |
204 |
# intel C on Windows, see windows_intelc_options.py for a start |
# intel C on Windows, see windows_intelc_options.py for a start |
205 |
pedantic = "" |
pedantic = "" |
206 |
fatalwarning = "" |
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 |
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']: |