1 |
# locations of libs etc used by mkl |
2 |
mkl_path = '/opt/intel/mkl80.019/include' |
3 |
mkl_lib_path ='/opt/intel/mkl80.019/lib/64' |
4 |
mkl_libs = ['mkl_solver', 'mkl_lapack', 'mkl_ipf'] |
5 |
|
6 |
# locations of libs etc used by SCSL |
7 |
scsl_path = '/usr/include' |
8 |
scsl_lib_path = '/usr/lib' |
9 |
scsl_libs = ['scs_mp'] |
10 |
|
11 |
# locations of include files for python |
12 |
python_path = '/raid2/tools/python-2.3.4/include/python2.3' |
13 |
python_lib_path = '/raid2/tools/python-2.3.4/lib' |
14 |
python_lib = 'python2.3' |
15 |
|
16 |
# locations of libraries for boost |
17 |
boost_path = '/raid2/tools/boost/include/boost-1_31' |
18 |
boost_lib_path = '/raid2/tools/boost/lib' |
19 |
boost_lib = 'boost_python-intel-d-1_31' |
20 |
|
21 |
# locations of doc building executables |
22 |
doxygen_path = '/raid2/tools/doxygen/1.4.2/gcc-3.3.5/bin' |
23 |
epydoc_path = '/raid2/tools/epydoc/2.1/python-2.3.4/bin' |
24 |
epydoc_pythonpath = '/raid2/tools/epydoc/2.1/python-2.3.4/lib/python2.3/site-packages' |
25 |
|
26 |
# locations of PAPI |
27 |
# papi_path = '/data/raid2/toolspp4/papi/3.0.8.1/gcc-3.3.6/include' |
28 |
# papi_lib_path = '/data/raid2/toolspp4/papi/3.0.8.1/gcc-3.3.6/lib' |
29 |
# papi_libs = [ 'papi' ] |
30 |
|
31 |
# names of c and c++ compilers to use |
32 |
cc = 'icc' |
33 |
cxx = 'icc' |
34 |
|
35 |
# c flags to use |
36 |
cc_flags = "-O3 -ftz -IPF_ftlacc- -IPF_fma -fno-alias -openmp -openmp_report0 -fno-alias -c99 -no-gcc -w1 -fpic" |
37 |
cc_flags_debug = '-g -O0 -openmp -openmp_report0 -c99 -ansi_alias -no-gcc -w1 -fpic' |
38 |
|
39 |
# c++ flags to use |
40 |
cxx_flags = '-O3 -ftz -IPF_ftlacc- -IPF_fma -fno-alias -openmp -openmp_report0 -ansi -ansi_alias -no-gcc -w1 -fpic' |
41 |
cxx_flags_debug = '-g -O0 -openmp -openmp_report0 -ansi -ansi_alias -no-gcc -w1 -fpic -DDOASSERT -DDOPROF' |
42 |
|
43 |
# system specific libraries to link with |
44 |
sys_libs = ['guide', 'irc'] |