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 |
# flag the MPI settings |
16 |
# useMPI = 'yes' |
17 |
|
18 |
# TODO: Variables named *_path should be *_include |
19 |
|
20 |
# locations of libs etc used by mkl |
21 |
mkl_path = '/opt/intel/mkl80.019/include' |
22 |
mkl_lib_path ='/opt/intel/mkl80.019/lib/64' |
23 |
mkl_libs = ['mkl_solver', 'mkl_lapack', 'mkl_ipf'] |
24 |
|
25 |
# locations of libs etc used by SCSL |
26 |
scsl_path = '/usr/include' |
27 |
scsl_lib_path = '/usr/lib' |
28 |
scsl_libs = ['scs'] |
29 |
scsl_libs_MPI = [ 'scs', 'mpi' ] |
30 |
|
31 |
|
32 |
# locations of include files for python |
33 |
python_path = '/data/raid2/toolspp4/python/2.4.1/gcc-3.3.6/include/python2.4' |
34 |
python_lib_path = '/data/raid2/toolspp4/python/2.4.1/gcc-3.3.6/lib' |
35 |
python_lib = 'python2.4' |
36 |
|
37 |
# locations of libraries for boost |
38 |
boost_path = '/data/raid2/toolspp4/boost/1.33.1/python-2.4.1/gcc-3.3.6/include' |
39 |
boost_lib_path = '/data/raid2/toolspp4/boost/1.33.1/python-2.4.1/gcc-3.3.6/lib' |
40 |
boost_lib = 'boost_python' |
41 |
|
42 |
# locations of doc building executables |
43 |
doxygen_path = '/raid2/tools/doxygen/1.4.2/gcc-3.3.5/bin' |
44 |
epydoc_path = '/raid2/tools/epydoc/2.1/python-2.3.4/bin' |
45 |
|
46 |
# locations of netcdf |
47 |
useNetCDF = 'yes' |
48 |
netCDF_path = "/raid2/toolspp4/netcdf/3.6.1/gcc-3.3.6/include" |
49 |
netCDF_lib_path = "/raid2/toolspp4/netcdf/3.6.1/gcc-3.3.6/lib" |
50 |
netCDF_libs = [ 'netcdf_c++', 'netcdf'] |
51 |
|
52 |
# locations of PAPI |
53 |
# papi_path = '/data/raid2/toolspp4/papi/3.0.8.1/gcc-3.3.6/include' |
54 |
# papi_lib_path = '/data/raid2/toolspp4/papi/3.0.8.1/gcc-3.3.6/lib' |
55 |
# papi_libs = [ 'papi' ] |
56 |
|
57 |
# c flags to use |
58 |
cc_flags = "-O3 -ftz -IPF_ftlacc- -IPF_fma -fno-alias -c99 -w1 -fpic" |
59 |
cc_flags_debug = '-g -O0 -c99 -w1 -fpic' |
60 |
|
61 |
# c++ flags to use |
62 |
cxx_flags = '-ansi' |
63 |
cxx_flags_debug = '-ansi -DDOASSERT -DDOPROF' |
64 |
|
65 |
# c and c++ flags for MPI compilation |
66 |
# c flags to use |
67 |
cc_flags_MPI = "-O3 -ftz -IPF_ftlacc- -IPF_fma -fno-alias -c99 -w1 -fpic -wd161 -DPASO_MPI" |
68 |
cc_flags_debug_MPI = '-g -O0 -c99 -w1 -fpic -wd161 -DPASO_MPI' |
69 |
|
70 |
# c++ flags to use |
71 |
cxx_flags_MPI = '-ansi -wd1563 -wd161' |
72 |
cxx_flags_debug_MPI = '-ansi -DDOASSERT -DDOPROF -wd1563 -wd161' |
73 |
|
74 |
# system specific libraries to link with |
75 |
sys_libs = ['guide', 'irc'] |