1 |
# Copyright 2006 by ACcESS MNRF |
2 |
# |
3 |
# http://www.access.edu.au |
4 |
# Primary Business: Queensland, Australia |
5 |
# Licensed under the Open Software License version 3.0 |
6 |
# http://www.opensource.org/licenses/osl-3.0.php |
7 |
# |
8 |
|
9 |
mpi_path = '/opt/anupack/1.0/include' |
10 |
mpi_lib_path = '/opt/anupack/1.0/lib' |
11 |
mpi_libs = ['mpi'] |
12 |
mpi_run = 'mpirun -np 1' |
13 |
|
14 |
# locations of libs etc used by mkl |
15 |
mkl_path = '/opt/intel-mkl/8.0/include' |
16 |
mkl_lib_path ='/opt/intel-mkl/8.0/lib/64' |
17 |
mkl_libs = ['mkl_solver', 'mkl_lapack', 'mkl_ipf'] |
18 |
|
19 |
# locations of libs etc used by SCSL |
20 |
### scsl_path = '/opt/scsl-1.6.1.0/include/' |
21 |
### scsl_lib_path = '/opt/scsl-1.6.1.0/lib' |
22 |
### scsl_libs = ['scs_mp'] |
23 |
|
24 |
# locations of include files for python |
25 |
python_path = '/home/escript/python-2.4.4/include/python2.4' |
26 |
python_lib_path = '/home/escript/python-2.4.4/lib' |
27 |
python_lib = 'python2.4' |
28 |
|
29 |
# locations of libraries for boost (on ac use module load something/boost) |
30 |
boost_path = '/home/escript/boost-1.33.1.ken/include/boost-1_33_1' |
31 |
boost_lib_path = '/home/escript/boost-1.33.1.ken/lib' |
32 |
boost_lib = ['boost_python-gcc-mt'] |
33 |
|
34 |
# locations of doc building executables |
35 |
#doxygen_path = '/raid2/tools/doxygen/1.4.2/gcc-3.3.5/bin' |
36 |
#epydoc_path = '/raid2/tools/epydoc/2.1/python-2.3.4/bin' |
37 |
|
38 |
# locations of netcdf |
39 |
useNetCDF = 'yes' |
40 |
netCDF_path = "/opt/netcdf/3.6.2/gcc-4.1.2/include" |
41 |
netCDF_lib_path = "/opt/netcdf/3.6.2/gcc-4.1.2/lib" |
42 |
netCDF_libs = [ 'netcdf_c++', 'netcdf'] |
43 |
|
44 |
# locations of PAPI |
45 |
# papi_path = '/data/raid2/toolspp4/papi/3.0.8.1/gcc-3.3.6/include' |
46 |
# papi_lib_path = '/data/raid2/toolspp4/papi/3.0.8.1/gcc-3.3.6/lib' |
47 |
# papi_libs = [ 'papi' ] |
48 |
|
49 |
# c flags to use |
50 |
cc_flags = "-O3 -ftz -IPF_ftlacc- -IPF_fma -fno-alias -openmp -openmp_report0 -fno-alias -c99 -w1 -fpic" |
51 |
cc_flags_debug = '-g -O0 -openmp -openmp_report0 -c99 -ansi_alias -w1 -fpic' |
52 |
|
53 |
# c++ flags to use |
54 |
cxx_flags = '-ansi -ansi_alias' |
55 |
cxx_flags_debug = '-ansi -UDOASSERT -DDOPROF' |
56 |
|
57 |
# system specific libraries to link with |
58 |
sys_libs = ['guide', 'irc'] |