diff options
author | Nick R. Papior <nickpapior@gmail.com> | 2019-04-30 23:11:41 +0200 |
---|---|---|
committer | Matti Picus <matti.picus@gmail.com> | 2019-04-30 17:11:41 -0400 |
commit | c51a56c4c78a409a884201004a1e7f605526a3a8 (patch) | |
tree | eb6280e62c96437f3e3ffb16738b6501a8415750 /site.cfg.example | |
parent | 9a31efbea0a0390a59e1201a82e53f893a2f3c8c (diff) | |
download | numpy-c51a56c4c78a409a884201004a1e7f605526a3a8.tar.gz |
BLD: streamlined library names in site.cfg sections (#13157)
* BLD: use libraries as a key consistently in all site.cfg sections
Diffstat (limited to 'site.cfg.example')
-rw-r--r-- | site.cfg.example | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/site.cfg.example b/site.cfg.example index c3169f3be..1af19d353 100644 --- a/site.cfg.example +++ b/site.cfg.example @@ -21,6 +21,7 @@ # with. Note that these should be just the names, not the filenames. For # example, the file "libfoo.so" would become simply "foo". # libraries = lapack,f77blas,cblas,atlas +# This setting is available for *all* sections. # # library_dirs # List of directories to add to the library search path when compiling @@ -162,23 +163,20 @@ # [mkl] # library_dirs = /opt/intel/compilers_and_libraries_2018/linux/mkl/lib/intel64 # include_dirs = /opt/intel/compilers_and_libraries_2018/linux/mkl/include -# mkl_libs = mkl_rt -# lapack_libs = +# libraries = mkl_rt # # For 32 bit code at Linux: # [mkl] # library_dirs = /opt/intel/compilers_and_libraries_2018/linux/mkl/lib/ia32 # include_dirs = /opt/intel/compilers_and_libraries_2018/linux/mkl/include -# mkl_libs = mkl_rt -# lapack_libs = +# libraries = mkl_rt # # On win-64, the following options compiles NumPy with the MKL library # dynamically linked. # [mkl] # include_dirs = C:\Program Files (x86)\IntelSWTools\compilers_and_libraries_2018\windows\mkl\include # library_dirs = C:\Program Files (x86)\IntelSWTools\compilers_and_libraries_2018\windows\mkl\lib\intel64 -# mkl_libs = mkl_rt -# lapack_libs = +# libraries = mkl_rt # Accelerate # ---------- @@ -202,10 +200,10 @@ # https://scikit-umfpack.github.io/scikit-umfpack/ # #[amd] -#amd_libs = amd +#libraries = amd # #[umfpack] -#umfpack_libs = umfpack +#libraries = umfpack # FFT libraries # ------------- |