4 |
mkl_libs = ['mkl_solver', 'mkl_lapack', 'mkl_ipf'] |
mkl_libs = ['mkl_solver', 'mkl_lapack', 'mkl_ipf'] |
5 |
|
|
6 |
# locations of libs etc used by SCSL |
# locations of libs etc used by SCSL |
7 |
scsl_path = '' |
scsl_path = '/opt/scsl/1.6.1.0/include' |
8 |
scsl_lib_path = '' |
scsl_lib_path = '/opt/scsl/1.6.1.0/lib' |
9 |
scsl_libs = ['scs_mp'] |
scsl_libs = ['scs_mp'] |
|
|
|
|
|
|
10 |
# locations of libs etc used by UMFPACK |
# locations of libs etc used by UMFPACK |
|
umfpack_path = '' |
|
|
umfpack_lib_path = '' |
|
|
umfpack_libs = [] |
|
11 |
|
|
12 |
# locations of include files for python |
# locations of include files for python |
13 |
python_path = '/usr/include/python2.3' |
python_path = '/usr/include/python2.3' |
|
python_lib_path = '/usr/lib/python2.3/lib' |
|
14 |
python_lib = 'python2.3' |
python_lib = 'python2.3' |
15 |
|
|
|
|
|
16 |
# locations of libraries for boost |
# locations of libraries for boost |
17 |
boost_path = '/home/woo409/dev/boost_1_33_1' |
boost_path = '/home/woo409/dev/boost_1_33_1' |
18 |
boost_lib_path = '/home/woo409/dev/boost_1_33_1/altix_binary/lib' |
boost_lib_path = '/home/woo409/dev/boost_1_33_1/altix_binary/lib' |
19 |
boost_lib = 'boost_python-il-mt-1_33_1' |
boost_lib = 'boost_python-il-mt-1_33_1' |
20 |
|
|
|
# names of libraries for python and boost |
|
|
|
|
|
# names of c and c++ compilers to use |
|
|
cc = 'icc' |
|
|
cxx = 'icpc' |
|
|
|
|
21 |
# c flags to use |
# c flags to use |
22 |
cc_flags = '-O3 -fpic -IPF_fma -ftz -openmp -openmp_report0 -mp1 -tpp2 -c99 -ansi_alias -w1' |
cc_flags = '-O3 -fpic -IPF_fma -ftz -openmp -openmp_report0 -mp1 -tpp2 -c99 -ansi_alias -w1' |
23 |
cc_flags_debug = '-g -O0 -fpic -openmp -openmp_report0 -tpp2 -c99 -ansi_alias -w1' |
cc_flags_debug = '-g -O0 -fpic -openmp -openmp_report0 -tpp2 -c99 -ansi_alias -w1' |
24 |
|
|
25 |
# c++ flags to use |
# c++ flags to use - only need to list the additional ones compared with cc_flags |
26 |
cxx_flags = '-O3 -fpic -IPF_fma -ftz -openmp -openmp_report0 -mp1 -tpp2 -ansi -ansi_alias -w1' |
cxx_flags = '-ansi' |
27 |
cxx_flags_debug = '-g -O0 -fpic -openmp -openmp_report0 -tpp2 -ansi -ansi_alias -w1 -DDOASSERT -DDOPROF' |
cxx_flags_debug = '-ansi -DDOASSERT -DDOPROF' |
|
|
|
|
# static library archiver flags to use |
|
|
ar_flags = 'crus' |
|
28 |
|
|
29 |
# system specific libraries to link with |
# system specific libraries to link with |
30 |
sys_libs = ['guide', 'irc'] |
sys_libs = ['guide', 'irc'] |
31 |
|
|
32 |
|
# FIXME: OLD STUFF TO BE REMOVED |
33 |
|
cc = 'icc' |
34 |
|
cxx = 'icpc' |