1 |
# locations of include files for python and boost |
2 |
python_path = '/raid2/tools/python-2.3.4/include/python2.3' |
3 |
boost_path = '/raid2/tools/boost/include/boost-1_31' |
4 |
|
5 |
# locations of libraries for python and boost |
6 |
python_lib_path = '/raid2/tools/python-2.3.4/lib' |
7 |
boost_lib_path = '/raid2/tools/boost/lib' |
8 |
|
9 |
# names of libraries for python and boost |
10 |
python_lib = 'python2.3' |
11 |
boost_lib = 'boost_python-intel-d-1_31' |
12 |
|
13 |
# names of c and c++ compilers to use |
14 |
cc = 'icc' |
15 |
cxx = 'icc' |
16 |
|
17 |
# c flags to use |
18 |
cc_flags = '-O3 -IPF_fma -ftz -openmp -openmp_report0 -mp1 -tpp2 -c99 -ansi_alias -no-gcc -fpic -w1' |
19 |
cc_flags_debug = '-g -O0 -openmp -openmp_report0 -tpp2 -c99 -ansi_alias -no-gcc -fpic -w1' |
20 |
|
21 |
# c++ flags to use |
22 |
cxx_flags = '-O3 -IPF_fma -ftz -openmp -openmp_report0 -mp1 -tpp2 -ansi -ansi_alias -no-gcc -fpic -w1' |
23 |
cxx_flags_debug = '-g -O0 -openmp -openmp_report0 -tpp2 -ansi -ansi_alias -no-gcc -fpic -w1 -DDOASSERT -DDOPROF' |
24 |
|
25 |
# static library archiver flags to use |
26 |
ar_flags = 'crus' |