1 |
# locations of libs etc used by mkl |
2 |
mkl_path = '' |
3 |
mkl_lib_path = '' |
4 |
mkl_libs = [] |
5 |
|
6 |
# locations of libs etc used by SCSL |
7 |
scsl_path = '' |
8 |
scsl_lib_path = '' |
9 |
scsl_libs = [] |
10 |
|
11 |
|
12 |
# locations of libs etc used by UMFPACK |
13 |
umfpack_path = '' |
14 |
umfpack_lib_path = '' |
15 |
umfpack_libs = [] |
16 |
|
17 |
# locations of include files for python |
18 |
python_path = '/opt/tools/python-2.3.5-gcc3.4/include/python2.3' |
19 |
python_lib_path = '/opt/tools/python-2.3.5-gcc3.4/lib' |
20 |
python_lib = 'python2.3' |
21 |
|
22 |
# locations of libraries for boost |
23 |
boost_path = '/opt/tools/boost_1_31-gcc3.4/include/boost-1_31' |
24 |
boost_lib_path = '/opt/tools/boost_1_31-gcc3.4/lib' |
25 |
boost_lib = 'boost_python-gcc-1_31' |
26 |
|
27 |
# names of c and c++ compilers to use |
28 |
cc = 'gcc' |
29 |
cxx = 'g++' |
30 |
|
31 |
# c flags to use |
32 |
cc_flags = '-O3 -std=c99 -fpic --no-warn -W -Wno-unknown-pragmas' |
33 |
cc_flags_debug = '-g -O0 -std=c99 -fpic --no-warn -W -Wno-unknown-pragmas' |
34 |
|
35 |
# c++ flags to use |
36 |
cxx_flags = '-O3 -ansi -fpic --no-warn -W -Wno-unknown-pragmas' |
37 |
cxx_flags_debug = '-g -O0 -ansi -fpic --no-warn -W -Wno-unknown-pragmas -DDOASSERT -DDOPROF' |
38 |
|
39 |
# static library archiver flags to use |
40 |
ar_flags = 'crus' |
41 |
|
42 |
# system specific libraries to link with |
43 |
sys_libs = [] |