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 |
# locations of PAPI |
32 |
# papi_path = '/data/raid2/toolspp4/papi/3.0.8.1/gcc-3.3.6/include' |
33 |
# papi_lib_path = '/data/raid2/toolspp4/papi/3.0.8.1/gcc-3.3.6/lib' |
34 |
# papi_libs = [ 'papi' ] |
35 |
papi_path = '' |
36 |
papi_lib_path = '' |
37 |
papi_libs = [ ] |
38 |
|
39 |
# names of c and c++ compilers to use |
40 |
cc = 'icc' |
41 |
cxx = 'icc' |
42 |
|
43 |
# c flags to use |
44 |
cc_flags = "-O3 -ftz -IPF_ftlacc- -IPF_fma -fno-alias -openmp -openmp_report0 -fno-alias -c99 -no-gcc -w1 -fpic" |
45 |
cc_flags_debug = '-g -O0 -openmp -openmp_report0 -c99 -ansi_alias -no-gcc -w1 -fpic' |
46 |
|
47 |
# c++ flags to use |
48 |
cxx_flags = '-O3 -ftz -IPF_ftlacc- -IPF_fma -fno-alias -openmp -openmp_report0 -ansi -ansi_alias -no-gcc -w1 -fpic' |
49 |
cxx_flags_debug = '-g -O0 -openmp -openmp_report0 -ansi -ansi_alias -no-gcc -w1 -fpic -DDOASSERT -DDOPROF' |
50 |
|
51 |
# static library archiver flags to use |
52 |
ar_flags = 'crus' |
53 |
|
54 |
# system specific libraries to link with |
55 |
sys_libs = ['guide', 'irc'] |