1 |
|
# locations of include files for python and boost |
2 |
python_path = '/usr/include' |
python_path = '/usr/include' |
3 |
boost_path = '/usr/include' |
boost_path = '/usr/include' |
4 |
|
|
5 |
|
# locations of libraries for python and boost |
6 |
python_lib_path = '/usr/lib' |
python_lib_path = '/usr/lib' |
7 |
boost_lib_path = '/usr/lib' |
boost_lib_path = '/usr/lib' |
8 |
|
|
9 |
|
# names of libraries for python and boost |
10 |
python_lib = 'python2.3' |
python_lib = 'python2.3' |
11 |
boost_lib = 'boost_python' |
boost_lib = 'boost_python' |
12 |
|
|
13 |
|
# names of c and c++ compilers to use |
14 |
cc = 'gcc' |
cc = 'gcc' |
15 |
cxx = 'g++' |
cxx = 'g++' |
16 |
|
|
17 |
|
# c flags to use |
18 |
cc_flags = '-O3 -std=c99 -fpic -W -Wall -Wno-unknown-pragmas' |
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' |
cc_flags_debug = '-g -O0 -std=c99 -fpic -W -Wall -Wno-unknown-pragmas' |
20 |
|
|
21 |
cc_flags = '-O3 -ansi -fpic -W -Wall -Wno-unknown-pragmas' |
# c++ flags to use |
22 |
cc_flags_debug = '-g -O0 -ansi -fpic -W -Wall -Wno-unknown-pragmas -DDOASSERT -DDOPROF' |
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 |
|
|
25 |
|
# static library archiver flags to use |
26 |
ar_flags = 'crus' |
ar_flags = 'crus' |
27 |
|
|
28 |
|
# system specific libraries to link with |
29 |
|
sys_libs = [] |