1 |
elspeth |
645 |
# 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 |
|
|
|
10 |
robwdcock |
551 |
# locations of libs etc used by mkl |
11 |
|
|
mkl_path = '/opt/intel_mkl/8.0.19/include' |
12 |
|
|
mkl_lib_path = '/opt/intel_mkl/8.0.19/lib/64' |
13 |
|
|
mkl_libs = ['mkl_solver', 'mkl_lapack', 'mkl_ipf'] |
14 |
|
|
|
15 |
|
|
# locations of libs etc used by SCSL |
16 |
robwdcock |
682 |
scsl_path = '/opt/scsl/1.6.1.0/include' |
17 |
|
|
scsl_lib_path = '/opt/scsl/1.6.1.0/lib' |
18 |
robwdcock |
551 |
scsl_libs = ['scs_mp'] |
19 |
|
|
|
20 |
|
|
# locations of include files for python |
21 |
|
|
python_path = '/usr/include/python2.3' |
22 |
phornby |
1033 |
python_lib_path = '/usr/lib' |
23 |
robwdcock |
551 |
python_lib = 'python2.3' |
24 |
|
|
|
25 |
|
|
# locations of libraries for boost |
26 |
phornby |
1033 |
boost_path = '/opt/boost/python2.3/1.31.0/include' |
27 |
ksteube |
1139 |
boost_libs_path = '/opt/boost/python2.3/1.31.0/lib' |
28 |
|
|
boost_libs = 'boost_python-il-mt-1_31' |
29 |
robwdcock |
551 |
|
30 |
phornby |
1033 |
# locations of doc building executables |
31 |
|
|
doxygen_path = '/opt/doxygen-1.4.5/bin' |
32 |
|
|
epydoc_path = '/opt/epydoc-2.1/bin' |
33 |
|
|
epydoc_pythonpath = '/usr/lib/python2.3/site-packages' |
34 |
|
|
|
35 |
|
|
# locations of netcdf |
36 |
gross |
1160 |
useNetCDF="yes" |
37 |
phornby |
1033 |
netCDF_path = "/opt/netcdf-3.6.0-p1/intel-9.0/include" |
38 |
|
|
netCDF_lib_path = "/opt/netcdf-3.6.0-p1/intel-9.0/lib" |
39 |
gross |
1160 |
netCDF_libs = [ 'netcdf_c++', 'netcdf'] |
40 |
phornby |
1033 |
|
41 |
robwdcock |
551 |
# c flags to use |
42 |
phornby |
1033 |
#cc_flags = '-O3 -fpic -ip -Ob2 -IPF-fma -ftz -parallel -openmp -mtune=itanium2 -mcpu=itanium2 -c99 -IPF-fltacc -IPF-fp-speculationsafe -ipo -fno-alias' |
43 |
|
|
cc_flags = '-O3 -fpic -ip -Ob2 -IPF-fma -ftz -parallel -openmp -mtune=itanium2 -mcpu=itanium2 -c99 -IPF-fltacc -IPF-fp-speculationsafe -fno-alias' |
44 |
woo409 |
779 |
cc_flags_debug = '-g -O0 -fpic -openmp -parallel -c99 -w1' |
45 |
robwdcock |
551 |
|
46 |
robwdcock |
682 |
# c++ flags to use - only need to list the additional ones compared with cc_flags |
47 |
|
|
cxx_flags = '-ansi' |
48 |
|
|
cxx_flags_debug = '-ansi -DDOASSERT -DDOPROF' |
49 |
robwdcock |
551 |
|
50 |
|
|
# system specific libraries to link with |
51 |
|
|
sys_libs = ['guide', 'irc'] |