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

Contents of /trunk/scons/prism_options.py

Parent Directory Parent Directory | Revision Log Revision Log


Revision 425 - (show annotations)
Tue Jan 10 04:10:39 2006 UTC (17 years, 2 months ago) by gross
File MIME type: text/x-python
File size: 1946 byte(s)
The sparse solver can be called by paso now. 

the building has been change to reduce some code redundancy:
now all scons SCscripts are importing scons/esys_options.py which
imports platform specific settings. 



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
12 # locations of libs etc used by UMFPACK
13 umfpack_path = ''
14 umfpack_lib_path = ''
15 umfpack_libs = []
16
17 # locations of include files for python
18 python_path = '/opt/tools/python-2.3.5-gcc3.4/include/python2.3'
19 python_lib_path = '/opt/tools/python-2.3.5-gcc3.4/lib'
20 python_lib = 'python2.3'
21
22 # locations of libraries for boost
23 boost_path = '/opt/tools/boost_1_31-gcc3.4/include/boost-1_31'
24 boost_lib_path = '/opt/tools/boost_1_31-gcc3.4/lib'
25 boost_lib = 'boost_python-gcc-1_31'
26
27 # names of c and c++ compilers to use
28 cc = 'gcc'
29 cxx = 'g++'
30
31 # c flags to use
32 cc_flags = '-O3 -std=c99 -fpic --no-warn -W -Wno-unknown-pragmas'
33 cc_flags_debug = '-g -O0 -std=c99 -fpic --no-warn -W -Wno-unknown-pragmas'
34
35 # c++ flags to use
36 cxx_flags = '-O3 -ansi -fpic --no-warn -W -Wno-unknown-pragmas'
37 cxx_flags_debug = '-g -O0 -ansi -fpic --no-warn -W -Wno-unknown-pragmas -DDOASSERT -DDOPROF'
38
39 # static library archiver flags to use
40 ar_flags = 'crus'
41
42 # system specific libraries to link with
43 sys_libs = []

  ViewVC Help
Powered by ViewVC 1.1.26