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