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

Annotation of /trunk/scons/prism_options.py

Parent Directory Parent Directory | Revision Log Revision Log


Revision 456 - (hide annotations)
Tue Jan 24 04:38:50 2006 UTC (17 years, 1 month ago) by jgs
File MIME type: text/x-python
File size: 1157 byte(s)
minor formatting changes

1 gross 425 # locations of libs etc used by mkl
2     mkl_path = ''
3     mkl_lib_path = ''
4     mkl_libs = []
5 jgs 456
6 gross 425 # 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 jgs 456
16 gross 425 # locations of include files for python
17 jgs 258 python_path = '/opt/tools/python-2.3.5-gcc3.4/include/python2.3'
18 gross 425 python_lib_path = '/opt/tools/python-2.3.5-gcc3.4/lib'
19     python_lib = 'python2.3'
20 jgs 456
21 gross 425 # locations of libraries for boost
22 jgs 258 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     # names of c and c++ compilers to use
27     cc = 'gcc'
28     cxx = 'g++'
29    
30     # c flags to use
31     cc_flags = '-O3 -std=c99 -fpic --no-warn -W -Wno-unknown-pragmas'
32     cc_flags_debug = '-g -O0 -std=c99 -fpic --no-warn -W -Wno-unknown-pragmas'
33    
34     # c++ flags to use
35     cxx_flags = '-O3 -ansi -fpic --no-warn -W -Wno-unknown-pragmas'
36     cxx_flags_debug = '-g -O0 -ansi -fpic --no-warn -W -Wno-unknown-pragmas -DDOASSERT -DDOPROF'
37    
38     # static library archiver flags to use
39     ar_flags = 'crus'
40    
41     # system specific libraries to link with
42     sys_libs = []

  ViewVC Help
Powered by ViewVC 1.1.26