summaryrefslogtreecommitdiff
path: root/site.cfg.example
diff options
context:
space:
mode:
authorNick Papior Andersen <nickpapior@gmail.com>2015-02-26 09:18:56 +0000
committerNick Papior Andersen <nickpapior@gmail.com>2015-02-26 09:18:56 +0000
commit98add1697398d93469889792739ca0721ac65284 (patch)
tree0bb242fdbbeabd2256bc1c0da833d9fbc9af51a9 /site.cfg.example
parenta2ec60c6b0ba610c635626d9fe10b569d6365a7f (diff)
downloadnumpy-98add1697398d93469889792739ca0721ac65284.tar.gz
ENH: rpath and runtime_library_dirs equivalent
The original distutils assumes runtime_library_dirs to be located in rpath, however, the internal structures assumes the keyword to be runtime_library_dirs. For now numpy.distutils handles both equivalently. The test has been updated to also test the rpath solution.
Diffstat (limited to 'site.cfg.example')
-rw-r--r--site.cfg.example4
1 files changed, 3 insertions, 1 deletions
diff --git a/site.cfg.example b/site.cfg.example
index dce6a6f01..04105e866 100644
--- a/site.cfg.example
+++ b/site.cfg.example
@@ -53,11 +53,13 @@
# shared libraries (.so). It is turned off by default.
# search_static_first = false
#
-# runtime_library_dirs
+# runtime_library_dirs/rpath
# List of directories that contains the libraries that should be
# used at runtime, thereby disregarding the LD_LIBRARY_PATH variable.
# See 'library_dirs' for formatting on different platforms.
# runtime_library_dirs = /opt/blas/lib:/opt/lapack/lib
+# or equivalently
+# rpath = /opt/blas/lib:/opt/lapack/lib
#
# extra_compile_args
# Add additional arguments to the compilation of sources.