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

Annotation of /trunk/scons/default_options.py

Parent Directory Parent Directory | Revision Log Revision Log


Revision 245 - (hide annotations)
Tue Nov 29 02:11:05 2005 UTC (17 years, 4 months ago) by jgs
File MIME type: text/x-python
File size: 752 byte(s)
added some comments and reasonable default values
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'

  ViewVC Help
Powered by ViewVC 1.1.26