1 |
ksteube |
808 |
|
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 |
|
|
# flag the MPI settings |
11 |
|
|
# useMPI = 'yes' |
12 |
ksteube |
1013 |
trilinos_path="/home/Work/trilinos-6/include" |
13 |
|
|
trilinos_lib_path="/home/Work/trilinos-6/lib" |
14 |
|
|
trilinos_libs=["aztecoo", "teuchos", "epetra"] |
15 |
ksteube |
808 |
|
16 |
ksteube |
1013 |
|
17 |
ksteube |
808 |
# TODO: Variables named *_path should be *_include |
18 |
|
|
|
19 |
|
|
# locations of libs etc used by mkl |
20 |
|
|
# mkl_path = '/opt/intel/mkl80.019/include' |
21 |
|
|
# mkl_lib_path ='/opt/intel/mkl80.019/lib/64' |
22 |
|
|
# mkl_libs = ['mkl_solver', 'mkl_lapack', 'mkl_ipf'] |
23 |
|
|
|
24 |
ksteube |
1013 |
mpi_path = '/home/Work/mpich-1.2.7p1/include' |
25 |
|
|
mpi_lib_path = '/home/Work/mpich-1.2.7p1/lib' |
26 |
|
|
mpi_libs = ['mpi'] |
27 |
|
|
|
28 |
ksteube |
808 |
# locations of libs etc used by SCSL |
29 |
|
|
# scsl_path = '/usr/include' |
30 |
|
|
# scsl_lib_path = '/usr/lib' |
31 |
|
|
# scsl_libs = ['scs_mp'] |
32 |
|
|
# scsl_libs_MPI = [ 'scs', 'mpi' ] |
33 |
|
|
|
34 |
|
|
|
35 |
|
|
# locations of include files for python |
36 |
|
|
# python_path = '/data/raid2/toolspp4/python/2.4.1/gcc-3.3.6/include/python2.4' |
37 |
|
|
# python_lib_path = '/data/raid2/toolspp4/python/2.4.1/gcc-3.3.6/lib' |
38 |
|
|
# python_lib = 'python2.4' |
39 |
|
|
|
40 |
|
|
# locations of libraries for boost |
41 |
|
|
# boost_path = '/data/raid2/toolspp4/boost/1.33.1/python-2.4.1/gcc-3.3.6/include' |
42 |
|
|
# boost_lib_path = '/data/raid2/toolspp4/boost/1.33.1/python-2.4.1/gcc-3.3.6/lib' |
43 |
|
|
# boost_lib = 'boost_python-mt' |
44 |
|
|
|
45 |
|
|
# locations of doc building executables |
46 |
|
|
doxygen_path = '/raid2/tools/doxygen/1.4.2/gcc-3.3.5/bin' |
47 |
|
|
epydoc_path = '/raid2/tools/epydoc/2.1/python-2.3.4/bin' |
48 |
|
|
epydoc_pythonpath = '/raid2/tools/epydoc/2.1/python-2.3.4/lib/python2.3/site-packages' |
49 |
|
|
|
50 |
ksteube |
1013 |
# locations of netcdf |
51 |
|
|
netCDF_path = "/home/Work/netcdf-3.6.1/include" |
52 |
|
|
netCDF_lib_path = "/home/Work/netcdf-3.6.1/lib" |
53 |
|
|
netCDF_libs_cxx = [ 'netcdf_c++', 'netcdf'] |
54 |
|
|
|
55 |
ksteube |
808 |
# locations of PAPI |
56 |
|
|
# papi_path = '/data/raid2/toolspp4/papi/3.0.8.1/gcc-3.3.6/include' |
57 |
|
|
# papi_lib_path = '/data/raid2/toolspp4/papi/3.0.8.1/gcc-3.3.6/lib' |
58 |
|
|
# papi_libs = [ 'papi' ] |
59 |
|
|
|
60 |
ksteube |
1013 |
# Comment all this stuff |
61 |
ksteube |
808 |
# c flags to use |
62 |
ksteube |
1013 |
# cc_flags = '-O -fPIC' |
63 |
|
|
# cc_flags_debug = '-g -fPIC -DTRILINOS -I/home/Work/trilinos-6/include' |
64 |
ksteube |
808 |
|
65 |
|
|
# c++ flags to use |
66 |
ksteube |
1013 |
# cxx_flags = '-fPIC' |
67 |
|
|
# cxx_flags_debug = '-DDOASSERT -UDOPROF -fPIC -DTRILINOS -I/home/Work/trilinos-6/include' |
68 |
ksteube |
808 |
|
69 |
|
|
# c and c++ flags for MPI compilation |
70 |
|
|
# c flags to use |
71 |
ksteube |
1013 |
# cc_flags_MPI = '-O -DPASO_MPI -fPIC' |
72 |
|
|
# cc_flags_debug_MPI = '-g -DPASO_MPI -fPIC -DTRILINOS -I/home/Work/trilinos-6/include' |
73 |
ksteube |
808 |
|
74 |
|
|
# c++ flags to use |
75 |
ksteube |
1013 |
# cxx_flags_MPI = '-fPIC' |
76 |
|
|
# cxx_flags_debug_MPI = '-DDOASSERT -UDOPROF -fPIC -DTRILINOS -I/home/Work/trilinos-6/include' |
77 |
ksteube |
808 |
|
78 |
|
|
# system specific libraries to link with |
79 |
ksteube |
1013 |
# sys_libs = [] |