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 |
# 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 |
scsl_path = '' |
17 |
scsl_lib_path = '' |
18 |
scsl_libs = ['scs_mp'] |
19 |
|
20 |
|
21 |
# locations of libs etc used by UMFPACK |
22 |
umfpack_path = '' |
23 |
umfpack_lib_path = '' |
24 |
umfpack_libs = [] |
25 |
|
26 |
# locations of include files for python |
27 |
python_path = '/usr/include/python2.3' |
28 |
python_lib_path = '/usr/lib/python2.3/lib' |
29 |
python_lib = 'python2.3' |
30 |
|
31 |
|
32 |
# locations of libraries for boost |
33 |
boost_path = '/home/woo409/dev/boost_1_33_1' |
34 |
boost_lib_path = '/home/woo409/dev/boost_1_33_1/altix_binary/lib' |
35 |
boost_lib = 'boost_python-il-mt-1_33_1' |
36 |
|
37 |
# names of libraries for python and boost |
38 |
|
39 |
# names of c and c++ compilers to use |
40 |
cc = 'icc' |
41 |
cxx = 'icpc' |
42 |
|
43 |
# c flags to use |
44 |
cc_flags = '-O3 -fpic -IPF_fma -ftz -openmp -openmp_report0 -mp1 -tpp2 -c99 -ansi_alias -w1' |
45 |
cc_flags_debug = '-g -O0 -fpic -openmp -openmp_report0 -tpp2 -c99 -ansi_alias -w1' |
46 |
|
47 |
# c++ flags to use |
48 |
cxx_flags = '-O3 -fpic -IPF_fma -ftz -openmp -openmp_report0 -mp1 -tpp2 -ansi -ansi_alias -w1' |
49 |
cxx_flags_debug = '-g -O0 -fpic -openmp -openmp_report0 -tpp2 -ansi -ansi_alias -w1 -DDOASSERT -DDOPROF' |
50 |
|
51 |
# static library archiver flags to use |
52 |
ar_flags = 'crus' |
53 |
|
54 |
# system specific libraries to link with |
55 |
sys_libs = ['guide', 'irc'] |