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

Contents of /trunk/scons/prism_options.py

Parent Directory Parent Directory | Revision Log Revision Log


Revision 486 - (show annotations)
Thu Feb 2 05:23:44 2006 UTC (17 years, 2 months ago) by jgs
File MIME type: text/x-python
File size: 1233 byte(s)
define locations of doxygen/epydoc executables
1 # locations of libs etc used by mkl
2 mkl_path = ''
3 mkl_lib_path = ''
4 mkl_libs = []
5
6 # locations of libs etc used by SCSL
7 scsl_path = ''
8 scsl_lib_path = ''
9 scsl_libs = []
10
11 # locations of libs etc used by UMFPACK
12 umfpack_path = ''
13 umfpack_lib_path = ''
14 umfpack_libs = []
15
16 # locations of include files for python
17 python_path = '/opt/tools/python-2.3.5-gcc3.4/include/python2.3'
18 python_lib_path = '/opt/tools/python-2.3.5-gcc3.4/lib'
19 python_lib = 'python2.3'
20
21 # locations of libraries for boost
22 boost_path = '/opt/tools/boost_1_31-gcc3.4/include/boost-1_31'
23 boost_lib_path = '/opt/tools/boost_1_31-gcc3.4/lib'
24 boost_lib = 'boost_python-gcc-1_31'
25
26 # locations of doc building executables
27 doxygen_path = ''
28 epydoc_path = ''
29
30 # names of c and c++ compilers to use
31 cc = 'gcc'
32 cxx = 'g++'
33
34 # c flags to use
35 cc_flags = '-O3 -std=c99 -fpic --no-warn -W -Wno-unknown-pragmas'
36 cc_flags_debug = '-g -O0 -std=c99 -fpic --no-warn -W -Wno-unknown-pragmas'
37
38 # c++ flags to use
39 cxx_flags = '-O3 -ansi -fpic --no-warn -W -Wno-unknown-pragmas'
40 cxx_flags_debug = '-g -O0 -ansi -fpic --no-warn -W -Wno-unknown-pragmas -DDOASSERT -DDOPROF'
41
42 # static library archiver flags to use
43 ar_flags = 'crus'
44
45 # system specific libraries to link with
46 sys_libs = []

  ViewVC Help
Powered by ViewVC 1.1.26