1 |
|
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 |
# locations of libs etc used by mkl |
12 |
mkl_path = '' |
13 |
mkl_lib_path = '' |
14 |
mkl_libs = [] |
15 |
|
16 |
# 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 |
|
26 |
# locations of include files for python |
27 |
python_path = '/opt/tools/python-2.3.5-gcc3.4/include/python2.3' |
28 |
python_lib_path = '/opt/tools/python-2.3.5-gcc3.4/lib' |
29 |
python_lib = 'python2.3' |
30 |
|
31 |
# locations of libraries for boost |
32 |
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 |
# locations of doc building executables |
37 |
doxygen_path = '' |
38 |
epydoc_path = '' |
39 |
|
40 |
# 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 = [] |