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