1 |
# locations of include files for python and boost |
2 |
python_path = '/opt/tools/python-2.3.5-gcc3.4/include/python2.3' |
3 |
boost_path = '/opt/tools/boost_1_31-gcc3.4/include/boost-1_31' |
4 |
|
5 |
# locations of libraries for python and boost |
6 |
python_lib_path = '/opt/tools/python-2.3.5-gcc3.4/lib' |
7 |
boost_lib_path = '/opt/tools/boost_1_31-gcc3.4/lib' |
8 |
|
9 |
# names of libraries for python and boost |
10 |
python_lib = 'python2.3' |
11 |
boost_lib = 'boost_python-gcc-1_31' |
12 |
|
13 |
# names of c and c++ compilers to use |
14 |
cc = 'gcc' |
15 |
cxx = 'g++' |
16 |
|
17 |
# c flags to use |
18 |
cc_flags = '-O3 -std=c99 -fpic --no-warn -W -Wno-unknown-pragmas' |
19 |
cc_flags_debug = '-g -O0 -std=c99 -fpic --no-warn -W -Wno-unknown-pragmas' |
20 |
|
21 |
# c++ flags to use |
22 |
cxx_flags = '-O3 -ansi -fpic --no-warn -W -Wno-unknown-pragmas' |
23 |
cxx_flags_debug = '-g -O0 -ansi -fpic --no-warn -W -Wno-unknown-pragmas -DDOASSERT -DDOPROF' |
24 |
|
25 |
# static library archiver flags to use |
26 |
ar_flags = 'crus' |
27 |
|
28 |
# system specific libraries to link with |
29 |
sys_libs = [] |
30 |
|
31 |
# solver libraries to link with |
32 |
solver_libs = [] |