225 |
|
|
226 |
if cc_name == 'icc': |
if cc_name == 'icc': |
227 |
# Intel compiler |
# Intel compiler |
228 |
cc_flags = "-std=c99 -fPIC -wd161 -w1 -vec-report0 -DBLOCKTIMER -DCORE_ID1" |
# #1875: offsetof applied to non-POD types is nonstandard (in boost) |
229 |
cc_optim = "-O3 -ftz -IPF_ftlacc- -IPF_fma -fno-alias -ip" |
cc_flags = "-std=c99 -fPIC -w2 -wd1875 -Wno-unknown-pragmas -DBLOCKTIMER -DCORE_ID1" |
230 |
|
cc_optim = "-O3 -ftz -fno-alias -ipo -xHost" |
231 |
cc_debug = "-g -O0 -DDOASSERT -DDOPROF -DBOUNDS_CHECK" |
cc_debug = "-g -O0 -DDOASSERT -DDOPROF -DBOUNDS_CHECK" |
232 |
omp_flags = "-openmp -openmp_report0" |
omp_flags = "-openmp" |
233 |
omp_ldflags = "-openmp -openmp_report0 -lpthread" |
omp_ldflags = "-openmp -openmp_report=1" |
234 |
fatalwarning = "-Werror" |
fatalwarning = "-Werror" |
235 |
elif cc_name[:3] == 'gcc': |
elif cc_name[:3] == 'gcc': |
236 |
# GNU C on any system |
# GNU C on any system |