From a46fc7711164ee28705712c4f21685189a81d321 Mon Sep 17 00:00:00 2001 From: charsi Date: Mon, 22 Apr 2019 23:07:05 -0700 Subject: [PATCH 1/2] add instructions for GUILE env --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index f149e8b..20db098 100644 --- a/README.md +++ b/README.md @@ -55,6 +55,9 @@ export GUILE_LOAD_PATH="/usr/local/share/guile/site/2.2${GUILE_LOAD_PATH:+:}$GUI export GUILE_LOAD_COMPILED_PATH="/usr/local/lib/guile/2.2/site-ccache${GUILE_LOAD_COMPILED_PATH:+:}$GUILE_COMPILED_LOAD_PATH" ``` +You also need to have the GUILE environment variable set. If the output of `echo $GUILE` is empty you should specify the path using `./configure GUILE=$(which guile)`. + + To build from git requires Autoconf and Automake. ```sh ./bootstrap From c5e6a93fd7ea79e3ec3bdaa3379f93f06c9b5b35 Mon Sep 17 00:00:00 2001 From: charsi Date: Sun, 28 Apr 2019 06:23:49 -0700 Subject: [PATCH 2/2] GUILE path --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 20db098..d6caa6d 100644 --- a/README.md +++ b/README.md @@ -55,7 +55,10 @@ export GUILE_LOAD_PATH="/usr/local/share/guile/site/2.2${GUILE_LOAD_PATH:+:}$GUI export GUILE_LOAD_COMPILED_PATH="/usr/local/lib/guile/2.2/site-ccache${GUILE_LOAD_COMPILED_PATH:+:}$GUILE_COMPILED_LOAD_PATH" ``` -You also need to have the GUILE environment variable set. If the output of `echo $GUILE` is empty you should specify the path using `./configure GUILE=$(which guile)`. +You can manually specify the locatation of GUILE using `./configure GUILE=$(which guile)` if you run into the following error - +```sh +configure: error: 'guild' binary not found; please check your guile-2.x installation. +``` To build from git requires Autoconf and Automake.