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 = '' |
8 |
scsl_lib_path = '' |
9 |
scsl_libs = ['scs_mp'] |
10 |
|
11 |
# locations of libs etc used by UMFPACK |
12 |
umfpack_path = '' |
13 |
umfpack_lib_path = '' |
14 |
umfpack_libs = [] |
15 |
|
16 |
# locations of include files for python |
17 |
python_path = '/raid2/tools/python-2.3.4/include/python2.3' |
18 |
python_lib_path = '/raid2/tools/python-2.3.4/lib' |
19 |
python_lib = 'python2.3' |
20 |
|
21 |
# locations of libraries for boost |
22 |
boost_path = '/raid2/tools/boost/include/boost-1_31' |
23 |
boost_lib_path = '/raid2/tools/boost/lib' |
24 |
boost_lib = 'boost_python-intel-d-1_31' |
25 |
|
26 |
# locations of doc building executables |
27 |
doxygen_path = '/raid2/tools/doxygen/1.4.2/gcc-3.3.5/bin' |
28 |
epydoc_path = '/raid2/tools/epydoc/2.1/python-2.3.4/bin' |
29 |
epydoc_pythonpath = '/raid2/tools/epydoc/2.1/python-2.3.4/lib/python2.3/site-packages' |
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 -IPF_fma -ftz -openmp -openmp_report0 -mp1 -tpp2 -c99 -ansi_alias -no-gcc -fpic -w1' |
37 |
cc_flags_debug = '-g -O0 -openmp -openmp_report0 -tpp2 -c99 -ansi_alias -no-gcc -fpic -w1' |
38 |
|
39 |
# c++ flags to use |
40 |
cxx_flags = '-O3 -IPF_fma -ftz -openmp -openmp_report0 -mp1 -tpp2 -ansi -ansi_alias -no-gcc -fpic -w1' |
41 |
cxx_flags_debug = '-g -O0 -openmp -openmp_report0 -tpp2 -ansi -ansi_alias -no-gcc -fpic -w1 -DDOASSERT -DDOPROF' |
42 |
|
43 |
# static library archiver flags to use |
44 |
ar_flags = 'crus' |
45 |
|
46 |
# system specific libraries to link with |
47 |
sys_libs = ['guide', 'irc'] |