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 |
# This is the magic combination for ac as of 30 May 2007: |
10 |
# module load boost/1.33.1-intel-9.1 |
11 |
# module unload intel-cc/8.1.035 # Doesn't have libirc.so, remove it |
12 |
# module load intel-cc/9.1.047 |
13 |
# module load scsl/1.6.1.0 |
14 |
|
15 |
mpi_path = '/opt/anupack/1.0/include' |
16 |
mpi_lib_path = '/opt/anupack/1.0/lib' |
17 |
mpi_libs = ['mpi'] |
18 |
|
19 |
# locations of libs etc used by mkl |
20 |
mkl_path = '/opt/intel-mkl/8.0/include' |
21 |
mkl_lib_path ='/opt/intel-mkl/8.0/lib/64' |
22 |
mkl_libs = ['mkl_solver', 'mkl_lapack', 'mkl_ipf'] |
23 |
|
24 |
# locations of libs etc used by SCSL |
25 |
scsl_path = '/opt/scsl-1.6.1.0/include/' |
26 |
scsl_lib_path = '/opt/scsl-1.6.1.0/lib' |
27 |
scsl_libs = ['scs_mp'] |
28 |
|
29 |
# locations of include files for python |
30 |
python_path = '/opt/python-2.4.3/include/python2.4' |
31 |
python_lib_path = '/opt/python-2.4.3/lib' |
32 |
python_lib = 'python2.4' |
33 |
|
34 |
# locations of libraries for boost (on ac use module load something/boost) |
35 |
boost_path = '/opt/boost-1.33.1/intel-9.1/include/boost-1_33_1' |
36 |
boost_libs_path = '/opt/boost-1.33.1/intel-9.1/lib' |
37 |
boost_libs = ['boost_python-il-d'] |
38 |
|
39 |
# locations of doc building executables |
40 |
#doxygen_path = '/raid2/tools/doxygen/1.4.2/gcc-3.3.5/bin' |
41 |
#epydoc_path = '/raid2/tools/epydoc/2.1/python-2.3.4/bin' |
42 |
#epydoc_pythonpath = '/raid2/tools/epydoc/2.1/python-2.3.4/lib/python2.3/site-packages' |
43 |
|
44 |
# locations of netcdf |
45 |
useNetCDF = 0 |
46 |
|
47 |
# locations of PAPI |
48 |
# papi_path = '/data/raid2/toolspp4/papi/3.0.8.1/gcc-3.3.6/include' |
49 |
# papi_lib_path = '/data/raid2/toolspp4/papi/3.0.8.1/gcc-3.3.6/lib' |
50 |
# papi_libs = [ 'papi' ] |
51 |
|
52 |
# c flags to use |
53 |
cc_flags = "-O3 -ftz -IPF_ftlacc- -IPF_fma -fno-alias -openmp -openmp_report0 -fno-alias -c99 -w1 -fpic" |
54 |
cc_flags_debug = '-g -O0 -openmp -openmp_report0 -c99 -ansi_alias -w1 -fpic' |
55 |
|
56 |
# c++ flags to use |
57 |
cxx_flags = '-ansi -ansi_alias' |
58 |
cxx_flags_debug = '-ansi -DDOASSERT -DDOPROF' |
59 |
|
60 |
# system specific libraries to link with |
61 |
sys_libs = ['guide', 'irc'] |