226 |
if cc_name == 'icpc': |
if cc_name == 'icpc': |
227 |
# Intel compiler |
# Intel compiler |
228 |
# #1875: offsetof applied to non-POD types is nonstandard (in boost) |
# #1875: offsetof applied to non-POD types is nonstandard (in boost) |
229 |
cc_flags = "-std=c99 -fPIC -w2 -wd1875 -Wno-unknown-pragmas -DBLOCKTIMER -DCORE_ID1" |
# removed -std=c99 because icpc doesn't like it and we aren't using c anymore |
230 |
|
cc_flags = "-fPIC -w2 -wd1875 -Wno-unknown-pragmas -DBLOCKTIMER -DCORE_ID1" |
231 |
cc_optim = "-O3 -ftz -fno-alias -ipo -xHost" |
cc_optim = "-O3 -ftz -fno-alias -ipo -xHost" |
232 |
cc_debug = "-g -O0 -DDOASSERT -DDOPROF -DBOUNDS_CHECK" |
cc_debug = "-g -O0 -DDOASSERT -DDOPROF -DBOUNDS_CHECK" |
233 |
omp_flags = "-openmp" |
omp_flags = "-openmp" |