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 |
|
10 |
|
11 |
# locations of libs etc used by mkl |
12 |
mkl_path = '/opt/intel-mkl/8.0/include' |
13 |
mkl_lib_path ='/opt/intel-mkl/8.0/lib/64' |
14 |
mkl_libs = ['mkl_solver', 'mkl_lapack', 'mkl_ipf'] |
15 |
|
16 |
# locations of libs etc used by SCSL |
17 |
scsl_path = '/opt/scsl-1.6.1.0/include/' |
18 |
scsl_lib_path = '/opt/scsl-1.6.1.0/lib' |
19 |
scsl_libs = ['scs_mp'] |
20 |
|
21 |
# locations of include files for python |
22 |
python_path = '/usr/include/python2.3/' |
23 |
python_lib_path = '/usr/lib/python2.3/' |
24 |
python_lib = 'python2.3' |
25 |
|
26 |
# locations of libraries for boost |
27 |
boost_path = '/opt/boost-1.33.0/gcc/include/boost-1_33' |
28 |
boost_libs_path = '/opt/boost-1.33.0/gcc/lib' |
29 |
boost_libs = 'boost_python-gcc-mt-d' |
30 |
|
31 |
# locations of doc building executables |
32 |
#doxygen_path = '/raid2/tools/doxygen/1.4.2/gcc-3.3.5/bin' |
33 |
#epydoc_path = '/raid2/tools/epydoc/2.1/python-2.3.4/bin' |
34 |
#epydoc_pythonpath = '/raid2/tools/epydoc/2.1/python-2.3.4/lib/python2.3/site-packages' |
35 |
|
36 |
# locations of PAPI |
37 |
# papi_path = '/data/raid2/toolspp4/papi/3.0.8.1/gcc-3.3.6/include' |
38 |
# papi_lib_path = '/data/raid2/toolspp4/papi/3.0.8.1/gcc-3.3.6/lib' |
39 |
# papi_libs = [ 'papi' ] |
40 |
|
41 |
# c flags to use |
42 |
cc_flags = "-O3 -ftz -IPF_ftlacc- -IPF_fma -fno-alias -openmp -openmp_report0 -fno-alias -c99 -w1 -fpic" |
43 |
cc_flags_debug = '-g -O0 -openmp -openmp_report0 -c99 -ansi_alias -w1 -fpic' |
44 |
|
45 |
# c++ flags to use |
46 |
cxx_flags = '-ansi -ansi_alias' |
47 |
cxx_flags_debug = '-ansi -DDOASSERT -DDOPROF' |
48 |
|
49 |
# system specific libraries to link with |
50 |
sys_libs = ['guide', 'irc'] |