branch: elpa/geiser-gambit
commit 7867f0a9224e1e18771bcb9082c84e363cfc7774
Author: jao <[email protected]>
Commit: jao <[email protected]>
installation instructions
---
readme.org | 24 ++++++++++++++++++++++--
1 file changed, 22 insertions(+), 2 deletions(-)
diff --git a/readme.org b/readme.org
index 48434fb..990419b 100644
--- a/readme.org
+++ b/readme.org
@@ -3,6 +3,26 @@
This package provides support for using
[[http://gambitscheme.org/wiki/index.php/Main_Page][Gambit Scheme]] in Emacs
with
[[http://geiser.nongnu.org][Geiser]].
-Provided [[https://gitlab.com/emacs-geiser/core][geiser-core]] is installed in
your system, if this package's
+Provided [[https://gitlab.com/emacs-geiser/geiser][geiser]] is installed in
your system, if this package's
directory is in your load path, just add ~(require 'geiser-gambit)~ to
-your initialisation files and then ~M-x run-gambit~ to start a REPL.
+your initialisation files or install ~geiser-gambit~ from MELPA.
+
+In addition, these steps are necessary to fully support Gambit scheme
+in Geiser:
+
+ - clone the last version of gambit
+ - configure gambit using ~--enable-rtlib-debug-source to activate autodoc~
+ - build gambit
+
+In a typical shell session, these would be the precise commands:
+
+#+begin_example
+ $ cd ~/
+ $ git clone <the gambit repo address>
+ $ cd gambit
+ $ ./configure --enable-single-host --enable-debug
--enable-rtlib-debug-source
+ $ make bootstrap
+ $ make bootclean
+ $ make -j
+ $ make install
+#+end_example