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