1 |
ksteube |
1322 |
|
2 |
ksteube |
1810 |
######################################################## |
3 |
ksteube |
1322 |
# |
4 |
ksteube |
1810 |
# Copyright (c) 2003-2008 by University of Queensland |
5 |
|
|
# Earth Systems Science Computational Center (ESSCC) |
6 |
|
|
# http://www.uq.edu.au/esscc |
7 |
ksteube |
1322 |
# |
8 |
ksteube |
1810 |
# 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 |
ksteube |
1322 |
|
14 |
ksteube |
1810 |
|
15 |
ksteube |
1322 |
# 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 (cyclone is missile mkl_solver.h) |
21 |
|
|
# mkl_path = '/HPC/apps/Intel/mkl701/lib/64' |
22 |
|
|
# mkl_lib_path ='/HPC/apps/Intel/mkl701/include' |
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_mp'] |
29 |
|
|
scsl_libs_MPI = [ 'scs', 'mpi' ] |
30 |
|
|
|
31 |
|
|
|
32 |
|
|
# locations of include files for python |
33 |
|
|
python_path = '/home/uqksteub/Escript/Python-2.4.4/include/python2.4' |
34 |
|
|
python_lib_path = '/home/uqksteub/Escript/Python-2.4.4/lib' |
35 |
|
|
python_lib = 'python2.4' |
36 |
|
|
|
37 |
|
|
# locations of libraries for boost |
38 |
|
|
boost_path = '/HPC/home/uqksteub/Escript/boost/include' |
39 |
|
|
boost_lib_path = '/HPC/home/uqksteub/Escript/boost/lib' |
40 |
|
|
boost_lib = 'boost_python-mt' |
41 |
|
|
|
42 |
|
|
# locations of doc building executables |
43 |
|
|
doxygen_path = '/data/raid2/toolspp4/doxygen/1.4.6/gcc-3.3.6/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 = '/HPC/apps/ia64/include' |
49 |
|
|
netCDF_lib_path = '/HPC/apps/ia64/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 |
ksteube |
1329 |
cc_flags = '-O -fPIC -openmp -openmp_report2' |
59 |
|
|
cc_flags_debug = '-g -fPIC -openmp -openmp_report2' |
60 |
ksteube |
1322 |
|
61 |
|
|
# c++ flags to use |
62 |
ksteube |
1329 |
cxx_flags = '-fPIC -openmp -openmp_report2' |
63 |
|
|
cxx_flags_debug = '-DDOASSERT -UDOPROF -fPIC -openmp -openmp_report2' |
64 |
ksteube |
1322 |
|
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 -fpic -wd161 -DPASO_MPI -ivdep-parallel" |
68 |
|
|
### cc_flags_debug_MPI = '-g -O0 -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 |
ksteube |
1329 |
sys_libs = ['guide', 'irc'] |