From 9f187e7edf2acf1d289d4667e879bcfd6e5d2419 Mon Sep 17 00:00:00 2001 From: djcb Date: Sun, 20 Jan 2019 08:01:04 +0200 Subject: [PATCH] mu-guile: mention LTDL_LIBRARY_PATH Newer versions of guile seem to require that. --- guile/mu-guile.texi | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/guile/mu-guile.texi b/guile/mu-guile.texi index bcc659d0..1961ad9d 100644 --- a/guile/mu-guile.texi +++ b/guile/mu-guile.texi @@ -181,7 +181,7 @@ If necessary, you can add the @t{%load-path} by adding to your Or, alternatively, you can set @t{GUILE_LOAD_PATH}: @example -export GUILE_LOAD_PATH="/usr/local/share/guile/site/2.0" +export GUILE_LOAD_PATH=/usr/local/share/guile/site/2.0 @end example In both cases the directory should be the directory that contains the @@ -189,6 +189,12 @@ installed @t{mu.scm}; if you installed @t{mu} under a different prefix, you must change the @code{%load-path} accordingly. After this, you should be ready to go! +Furthermore, you need to ensure that @t{guile} can find the mu-guile +library; for this we can use @code{LTDL_LIBRARY_PATH}, e.g. +@example +export LTDL_LIBRARY_PATH=/usr/local/lib +@end example + @node Making sure it works @section Making sure it works