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

Annotation of /trunk/scons/prism_options.py

Parent Directory Parent Directory | Revision Log Revision Log


Revision 645 - (hide annotations)
Fri Mar 24 01:10:42 2006 UTC (17 years ago) by elspeth
File MIME type: text/x-python
File size: 1656 byte(s)
More copyright.

1 elspeth 645
2     # Copyright 2006 by ACcESS MNRF
3     #
4     # http://www.access.edu.au
5     # Primary Business: Queensland, Australia
6     # Licensed under the Open Software License version 3.0
7     # http://www.opensource.org/licenses/osl-3.0.php
8     #
9    
10    
11 gross 425 # locations of libs etc used by mkl
12     mkl_path = ''
13     mkl_lib_path = ''
14     mkl_libs = []
15 jgs 456
16 gross 425 # locations of libs etc used by SCSL
17     scsl_path = ''
18     scsl_lib_path = ''
19     scsl_libs = []
20    
21     # locations of libs etc used by UMFPACK
22     umfpack_path = ''
23     umfpack_lib_path = ''
24     umfpack_libs = []
25 jgs 456
26 gross 425 # locations of include files for python
27 jgs 258 python_path = '/opt/tools/python-2.3.5-gcc3.4/include/python2.3'
28 gross 425 python_lib_path = '/opt/tools/python-2.3.5-gcc3.4/lib'
29     python_lib = 'python2.3'
30 jgs 456
31 gross 425 # locations of libraries for boost
32 jgs 258 boost_path = '/opt/tools/boost_1_31-gcc3.4/include/boost-1_31'
33     boost_lib_path = '/opt/tools/boost_1_31-gcc3.4/lib'
34     boost_lib = 'boost_python-gcc-1_31'
35    
36 jgs 486 # locations of doc building executables
37     doxygen_path = ''
38     epydoc_path = ''
39    
40 jgs 258 # names of c and c++ compilers to use
41     cc = 'gcc'
42     cxx = 'g++'
43    
44     # c flags to use
45     cc_flags = '-O3 -std=c99 -fpic --no-warn -W -Wno-unknown-pragmas'
46     cc_flags_debug = '-g -O0 -std=c99 -fpic --no-warn -W -Wno-unknown-pragmas'
47    
48     # c++ flags to use
49     cxx_flags = '-O3 -ansi -fpic --no-warn -W -Wno-unknown-pragmas'
50     cxx_flags_debug = '-g -O0 -ansi -fpic --no-warn -W -Wno-unknown-pragmas -DDOASSERT -DDOPROF'
51    
52     # static library archiver flags to use
53     ar_flags = 'crus'
54    
55     # system specific libraries to link with
56     sys_libs = []

  ViewVC Help
Powered by ViewVC 1.1.26