From 98add1697398d93469889792739ca0721ac65284 Mon Sep 17 00:00:00 2001 From: Nick Papior Andersen Date: Thu, 26 Feb 2015 09:18:56 +0000 Subject: 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. --- site.cfg.example | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'site.cfg.example') 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. -- cgit v1.2.1