13 |
mkl_libs = ['mkl_solver', 'mkl_lapack', 'mkl_ipf'] |
mkl_libs = ['mkl_solver', 'mkl_lapack', 'mkl_ipf'] |
14 |
|
|
15 |
# locations of libs etc used by SCSL |
# locations of libs etc used by SCSL |
16 |
scsl_path = '' |
scsl_path = '/opt/scsl/1.6.1.0/include' |
17 |
scsl_lib_path = '' |
scsl_lib_path = '/opt/scsl/1.6.1.0/lib' |
18 |
scsl_libs = ['scs_mp'] |
scsl_libs = ['scs_mp'] |
19 |
|
|
|
|
|
|
# locations of libs etc used by UMFPACK |
|
|
umfpack_path = '' |
|
|
umfpack_lib_path = '' |
|
|
umfpack_libs = [] |
|
|
|
|
20 |
# locations of include files for python |
# locations of include files for python |
21 |
python_path = '/usr/include/python2.3' |
python_path = '/usr/include/python2.3' |
|
python_lib_path = '/usr/lib/python2.3/lib' |
|
22 |
python_lib = 'python2.3' |
python_lib = 'python2.3' |
23 |
|
|
|
|
|
24 |
# locations of libraries for boost |
# locations of libraries for boost |
25 |
boost_path = '/home/woo409/dev/boost_1_33_1' |
boost_path = '/opt/boost/python2.3/1.33.1/include' |
26 |
boost_lib_path = '/home/woo409/dev/boost_1_33_1/altix_binary/lib' |
boost_lib_path = '/opt/boost/python2.3/1.33.1/lib' |
27 |
boost_lib = 'boost_python-il-mt-1_33_1' |
boost_lib = 'boost_python-gcc-mt-1_33_1' |
|
|
|
|
# names of libraries for python and boost |
|
|
|
|
|
# names of c and c++ compilers to use |
|
|
cc = 'icc' |
|
|
cxx = 'icpc' |
|
28 |
|
|
29 |
# c flags to use |
# c flags to use |
30 |
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' |
31 |
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' |
32 |
|
|
33 |
# c++ flags to use |
# c++ flags to use - only need to list the additional ones compared with cc_flags |
34 |
cxx_flags = '-O3 -fpic -IPF_fma -ftz -openmp -openmp_report0 -mp1 -tpp2 -ansi -ansi_alias -w1' |
cxx_flags = '-ansi' |
35 |
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' |
|
36 |
|
|
37 |
# system specific libraries to link with |
# system specific libraries to link with |
38 |
sys_libs = ['guide', 'irc'] |
sys_libs = ['guide', 'irc'] |