1 |
# locations of include files for python and boost |
# locations of include files for python and boost |
2 |
python_path = '/usr/include' |
# find valid python version: |
3 |
|
import sys,os |
4 |
|
python_path="/usr/include/python%s.%s"%(sys.version_info[0],sys.version_info[1]) |
5 |
|
if not os.access(python_path,os.F_OK): python_path="/usr/include" |
6 |
|
|
7 |
boost_path = '/usr/include' |
boost_path = '/usr/include' |
8 |
|
|
9 |
# locations of libraries for python and boost |
# locations of libraries for python and boost |
19 |
cxx = 'g++' |
cxx = 'g++' |
20 |
|
|
21 |
# c flags to use |
# c flags to use |
22 |
cc_flags = '-O3 -std=c99 -fpic -W -Wall -Wno-unknown-pragmas' |
cc_flags = '-O3 -std=c99 -fpic --no-warn -W -Wno-unknown-pragmas' |
23 |
cc_flags_debug = '-g -O0 -std=c99 -fpic -W -Wall -Wno-unknown-pragmas' |
cc_flags_debug = '-g -O0 -std=c99 -fpic --no-warn -W -Wno-unknown-pragmas' |
24 |
|
|
25 |
# c++ flags to use |
# c++ flags to use |
26 |
cxx_flags = '-O3 -ansi -fpic -W -Wall -Wno-unknown-pragmas' |
cxx_flags = '-O3 -ansi -fpic --no-warn -W -Wno-unknown-pragmas' |
27 |
cxx_flags_debug = '-g -O0 -ansi -fpic -W -Wall -Wno-unknown-pragmas -DDOASSERT -DDOPROF' |
cxx_flags_debug = '-g -O0 -ansi -fpic --no-warn -W -Wno-unknown-pragmas -DDOASSERT -DDOPROF' |
28 |
|
|
29 |
# static library archiver flags to use |
# static library archiver flags to use |
30 |
ar_flags = 'crus' |
ar_flags = 'crus' |
31 |
|
|
32 |
|
# system specific libraries to link with |
33 |
|
sys_libs = [] |
34 |
|
|
35 |
|
# solver libraries to link with |
36 |
|
solver_libs = [] |