1 |
jgs |
245 |
# locations of include files for python and boost |
2 |
jgs |
243 |
python_path = '/usr/include' |
3 |
|
|
boost_path = '/usr/include' |
4 |
|
|
|
5 |
jgs |
245 |
# locations of libraries for python and boost |
6 |
jgs |
243 |
python_lib_path = '/usr/lib' |
7 |
|
|
boost_lib_path = '/usr/lib' |
8 |
|
|
|
9 |
jgs |
245 |
# names of libraries for python and boost |
10 |
jgs |
243 |
python_lib = 'python2.3' |
11 |
|
|
boost_lib = 'boost_python' |
12 |
|
|
|
13 |
jgs |
245 |
# names of c and c++ compilers to use |
14 |
jgs |
243 |
cc = 'gcc' |
15 |
|
|
cxx = 'g++' |
16 |
|
|
|
17 |
jgs |
245 |
# c flags to use |
18 |
jgs |
243 |
cc_flags = '-O3 -std=c99 -fpic -W -Wall -Wno-unknown-pragmas' |
19 |
|
|
cc_flags_debug = '-g -O0 -std=c99 -fpic -W -Wall -Wno-unknown-pragmas' |
20 |
|
|
|
21 |
jgs |
245 |
# c++ flags to use |
22 |
|
|
cxx_flags = '-O3 -ansi -fpic -W -Wall -Wno-unknown-pragmas' |
23 |
|
|
cxx_flags_debug = '-g -O0 -ansi -fpic -W -Wall -Wno-unknown-pragmas -DDOASSERT -DDOPROF' |
24 |
jgs |
243 |
|
25 |
jgs |
245 |
# static library archiver flags to use |
26 |
jgs |
243 |
ar_flags = 'crus' |