1 |
|
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/mkl80.019/include' |
14 |
mkl_lib_path ='/opt/intel/mkl80.019/lib/64' |
15 |
mkl_libs = ['mkl_solver', 'mkl_lapack', 'mkl_ipf'] |
16 |
|
17 |
# locations of libs etc used by SCSL |
18 |
scsl_path = '' |
19 |
scsl_lib_path = '' |
20 |
scsl_libs = ['scs_mp'] |
21 |
|
22 |
# locations of libs etc used by UMFPACK |
23 |
umfpack_path = '' |
24 |
umfpack_lib_path = '' |
25 |
umfpack_libs = [] |
26 |
|
27 |
# locations of include files for python |
28 |
python_path = '/raid2/tools/python-2.3.4/include/python2.3' |
29 |
python_lib_path = '/raid2/tools/python-2.3.4/lib' |
30 |
python_lib = 'python2.3' |
31 |
|
32 |
# locations of libraries for boost |
33 |
boost_path = '/raid2/tools/boost/include/boost-1_31' |
34 |
boost_lib_path = '/raid2/tools/boost/lib' |
35 |
boost_lib = 'boost_python-intel-d-1_31' |
36 |
|
37 |
# locations of doc building executables |
38 |
doxygen_path = '/raid2/tools/doxygen/1.4.2/gcc-3.3.5/bin' |
39 |
epydoc_path = '/raid2/tools/epydoc/2.1/python-2.3.4/bin' |
40 |
epydoc_pythonpath = '/raid2/tools/epydoc/2.1/python-2.3.4/lib/python2.3/site-packages' |
41 |
|
42 |
# locations of PAPI |
43 |
# papi_path = '/data/raid2/toolspp4/papi/3.0.8.1/gcc-3.3.6/include' |
44 |
# papi_lib_path = '/data/raid2/toolspp4/papi/3.0.8.1/gcc-3.3.6/lib' |
45 |
# papi_libs = [ 'papi' ] |
46 |
papi_path = '' |
47 |
papi_lib_path = '' |
48 |
papi_libs = [ ] |
49 |
|
50 |
# names of c and c++ compilers to use |
51 |
cc = 'icc' |
52 |
cxx = 'icc' |
53 |
|
54 |
# c flags to use |
55 |
cc_flags = "-O3 -ftz -IPF_ftlacc- -IPF_fma -fno-alias -openmp -openmp_report0 -fno-alias -c99 -no-gcc -w1 -fpic" |
56 |
cc_flags_debug = '-g -O0 -openmp -openmp_report0 -c99 -ansi_alias -no-gcc -w1 -fpic' |
57 |
|
58 |
# c++ flags to use |
59 |
cxx_flags = '-O3 -ftz -IPF_ftlacc- -IPF_fma -fno-alias -openmp -openmp_report0 -ansi -ansi_alias -no-gcc -w1 -fpic' |
60 |
cxx_flags_debug = '-g -O0 -openmp -openmp_report0 -ansi -ansi_alias -no-gcc -w1 -fpic -DDOASSERT -DDOPROF' |
61 |
|
62 |
# static library archiver flags to use |
63 |
ar_flags = 'crus' |
64 |
|
65 |
# system specific libraries to link with |
66 |
sys_libs = ['guide', 'irc'] |