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 |
import sys |
12 |
|
13 |
# locations of libs etc used by mkl |
14 |
mkl_path = '' |
15 |
mkl_lib_path = '' |
16 |
mkl_libs = [] |
17 |
|
18 |
# locations of libs etc used by SCSL |
19 |
scsl_path = '' |
20 |
scsl_lib_path = '' |
21 |
scsl_libs = [] |
22 |
|
23 |
# locations of libs etc used by UMFPACK |
24 |
umfpack_path = '' |
25 |
umfpack_lib_path = '' |
26 |
umfpack_libs = [] |
27 |
|
28 |
# locations of include files for python |
29 |
python_path = "/usr/include/python%s.%s"%(sys.version_info[0],sys.version_info[1]) |
30 |
python_lib_path = '/usr/lib' |
31 |
python_lib = "python%s.%s"%(sys.version_info[0],sys.version_info[1]) |
32 |
|
33 |
# locations of libraries for boost |
34 |
boost_path = '/usr/include' |
35 |
boost_lib_path = '/usr/lib' |
36 |
boost_lib = 'boost_python' |
37 |
|
38 |
# locations of doc building executables |
39 |
doxygen_path = '/usr/bin' |
40 |
epydoc_path = '/usr/bin' |
41 |
epydoc_pythonpath = '' |
42 |
|
43 |
# locations of PAPI |
44 |
papi_path = '' |
45 |
papi_lib_path = '' |
46 |
papi_libs = [] |
47 |
|
48 |
# names of c and c++ compilers to use |
49 |
cc = 'gcc' |
50 |
cxx = 'g++' |
51 |
|
52 |
# c flags to use |
53 |
cc_flags = '-O3 -std=c99 -fpic --no-warn -W -Wno-unknown-pragmas' |
54 |
cc_flags_debug = '-g -O0 -std=c99 -fpic --no-warn -W -Wno-unknown-pragmas' |
55 |
|
56 |
# c++ flags to use |
57 |
cxx_flags = '-O3 -ansi -fpic --no-warn -W -Wno-unknown-pragmas' |
58 |
cxx_flags_debug = '-g -O0 -ansi -fpic --no-warn -W -Wno-unknown-pragmas -DDOASSERT -DDOPROF' |
59 |
|
60 |
# static library archiver flags to use |
61 |
ar_flags = 'crus' |
62 |
|
63 |
# system specific libraries to link with |
64 |
sys_libs = [] |