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 |
mpi_path = '/opt/anupack/1.0/include' |
16 |
mpi_lib_path = '/opt/anupack/1.0/lib' |
17 |
mpi_libs = ['mpi'] |
18 |
mpi_run = 'mpirun -np 1' |
19 |
|
20 |
# locations of libs etc used by mkl |
21 |
mkl_path = '/opt/intel-mkl/8.0/include' |
22 |
mkl_lib_path ='/opt/intel-mkl/8.0/lib/64' |
23 |
mkl_libs = ['mkl_solver', 'mkl_lapack', 'mkl_ipf'] |
24 |
|
25 |
# locations of libs etc used by SCSL |
26 |
### scsl_path = '/opt/scsl-1.6.1.0/include/' |
27 |
### scsl_lib_path = '/opt/scsl-1.6.1.0/lib' |
28 |
### scsl_libs = ['scs_mp'] |
29 |
|
30 |
# locations of include files for python |
31 |
python_path = '/home/escript/python-2.4.4/include/python2.4' |
32 |
python_lib_path = '/home/escript/python-2.4.4/lib' |
33 |
python_lib = 'python2.4' |
34 |
|
35 |
# locations of libraries for boost (on ac use module load something/boost) |
36 |
boost_path = '/home/escript/boost-1.33.1.ken/include/boost-1_33_1' |
37 |
boost_lib_path = '/home/escript/boost-1.33.1.ken/lib' |
38 |
boost_lib = ['boost_python-gcc-mt'] |
39 |
|
40 |
# locations of doc building executables |
41 |
#doxygen_path = '/raid2/tools/doxygen/1.4.2/gcc-3.3.5/bin' |
42 |
#epydoc_path = '/raid2/tools/epydoc/2.1/python-2.3.4/bin' |
43 |
|
44 |
# locations of netcdf |
45 |
useNetCDF = 'yes' |
46 |
netCDF_path = "/opt/netcdf/3.6.2/gcc-4.1.2/include" |
47 |
netCDF_lib_path = "/opt/netcdf/3.6.2/gcc-4.1.2/lib" |
48 |
netCDF_libs = [ 'netcdf_c++', 'netcdf'] |
49 |
|
50 |
# locations of PAPI |
51 |
# papi_path = '/data/raid2/toolspp4/papi/3.0.8.1/gcc-3.3.6/include' |
52 |
# papi_lib_path = '/data/raid2/toolspp4/papi/3.0.8.1/gcc-3.3.6/lib' |
53 |
# papi_libs = [ 'papi' ] |
54 |
|
55 |
# c flags to use |
56 |
cc_flags = "-O3 -ftz -IPF_ftlacc- -IPF_fma -fno-alias -openmp -openmp_report0 -fno-alias -c99 -w1 -fpic" |
57 |
cc_flags_debug = '-g -O0 -openmp -openmp_report0 -c99 -ansi_alias -w1 -fpic' |
58 |
|
59 |
# c++ flags to use |
60 |
cxx_flags = '-ansi -ansi_alias' |
61 |
cxx_flags_debug = '-ansi -UDOASSERT -DDOPROF' |
62 |
|
63 |
# system specific libraries to link with |
64 |
sys_libs = ['guide', 'irc'] |