/[escript]/trunk/scons/default_options.py
ViewVC logotype

Contents of /trunk/scons/default_options.py

Parent Directory Parent Directory | Revision Log Revision Log


Revision 252 - (show annotations)
Tue Nov 29 05:58:03 2005 UTC (17 years, 4 months ago) by jgs
File MIME type: text/x-python
File size: 808 byte(s)
pass in platform specific libraries via options files now

1 # locations of include files for python and boost
2 python_path = '/usr/include'
3 boost_path = '/usr/include'
4
5 # locations of libraries for python and boost
6 python_lib_path = '/usr/lib'
7 boost_lib_path = '/usr/lib'
8
9 # names of libraries for python and boost
10 python_lib = 'python2.3'
11 boost_lib = 'boost_python'
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 -W -Wall -Wno-unknown-pragmas'
19 cc_flags_debug = '-g -O0 -std=c99 -fpic -W -Wall -Wno-unknown-pragmas'
20
21 # 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
25 # static library archiver flags to use
26 ar_flags = 'crus'
27
28 # system specific libraries to link with
29 sys_libs = []

  ViewVC Help
Powered by ViewVC 1.1.26