README 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467
  1. This is version 3.0 of Guile, Project GNU's extension language library.
  2. Guile is an implementation of the Scheme programming language, packaged
  3. as a library that can be linked into applications to give them their own
  4. extension language. Guile supports other languages as well, giving
  5. users of Guile-based applications a choice of languages.
  6. Please send bug reports to bug-guile@gnu.org.
  7. See the LICENSE file for the specific terms that apply to Guile. Note
  8. that for any copyright year range specified as YYYY-ZZZZ in this
  9. package, the range specifies every single year in that closed interval.
  10. Additional INSTALL instructions ===========================================
  11. Generic instructions for configuring and compiling Guile can be found
  12. in the INSTALL file. Guile specific information and configure options
  13. can be found below, including instructions for installing SLIB.
  14. Guile depends on the following external libraries.
  15. - libgmp
  16. - libiconv
  17. - libintl
  18. - libltdl
  19. - libunistring
  20. - libgc
  21. - libffi
  22. It will also use the libreadline library if it is available.
  23. There is a corresponding `--with-XXX-prefix' option for each of these
  24. libraries (except for libgc and libffi which use `pkg-config', see
  25. below) that you can use when invoking ./configure, if you have these
  26. libraries installed in a location other than the standard places (/usr
  27. and /usr/local).
  28. These options are provided by the Gnulib `havelib' module, and details
  29. of how they work are documented in `Searching for Libraries' in the
  30. Gnulib manual (http://www.gnu.org/software/gnulib/manual). The extent
  31. to which they work on a given OS depends on whether that OS supports
  32. encoding full library path names in executables (aka `rpath'). Also
  33. note that using these options, and hence hardcoding full library path
  34. names (where that is supported), makes it impossible to later move the
  35. built executables and libraries to an installation location other than
  36. the one that was specified at build time.
  37. Another possible approach is to set CPPFLAGS and LDFLAGS on the
  38. configure command-line, so that they include -I options for all the
  39. non-standard places where you have installed header files and -L
  40. options for all the non-standard places where you have installed
  41. libraries. This will allow configure and make to find those headers
  42. and libraries during the build. E.g.:
  43. ../configure [...] CPPFLAGS='-I/my/include' LDFLAGS='-L/my/lib'
  44. The locations found will not be hardcoded into the build executables and
  45. libraries, so with this approach you will probably also need to set
  46. LD_LIBRARY_PATH correspondingly, to allow Guile to find the necessary
  47. libraries again at runtime.
  48. Required External Packages ================================================
  49. Guile requires the following external packages:
  50. - GNU MP, at least version 4.2
  51. GNU MP is used for bignum arithmetic. It is available from
  52. http://gmplib.org/ .
  53. - libltdl from GNU Libtool, at least version 1.5.6
  54. libltdl is used for loading extensions at run-time. It is
  55. available from http://www.gnu.org/software/libtool/ .
  56. - GNU libunistring, at least version 0.9.3
  57. libunistring is used for Unicode string operations, such as the
  58. `utf*->string' procedures. It is available from
  59. http://www.gnu.org/software/libunistring/ .
  60. - libgc, at least version 7.2
  61. libgc (aka. the Boehm-Demers-Weiser garbage collector) is the
  62. conservative garbage collector used by Guile. It is available
  63. from http://www.hboehm.info/gc/ .
  64. - libffi
  65. libffi provides a "foreign function interface", used by the
  66. `(system foreign)' module. It is available from
  67. http://sourceware.org/libffi/ .
  68. - pkg-config
  69. Guile's ./configure script uses pkg-config to discover the correct
  70. compile and link options for libgc and libffi. For this to work,
  71. the `PKG_CONFIG_PATH' environment variable must be set to point to
  72. the places where libgc's and libffi's `.pc' files can be found:
  73. PKG_CONFIG_PATH=/path/to/libgc/lib/pkgconfig:/path/to/libffi/lib/pkgconfig
  74. Alternatively, when pkg-config is not installed, you can work around
  75. this by setting some variables as part of the configure
  76. command-line:
  77. - PKG_CONFIG=true
  78. - BDW_GC_CFLAGS=<compile flags for picking up libgc headers>
  79. - BDW_GC_LIBS=<linker flags for picking up the libgc library>
  80. Note that because you're bypassing all pkg-config checks, you will
  81. also have to specify libffi flags as well:
  82. - LIBFFI_CFLAGS=<compile flags for picking up libffi headers>
  83. - LIBFFI_LIBS=<linker flags for picking up the libffi library>
  84. When building from a Git checkout, these additional packages are needed:
  85. - GNU Autoconf
  86. - GNU Automake
  87. - GNU Libtool
  88. - Flex
  89. - GNU Gettext
  90. - GNU Autopoint
  91. - GNU Texinfo
  92. - GNU Gperf
  93. Special Instructions For Some Systems =====================================
  94. We would like Guile to build on all systems using the simple
  95. instructions above, but it seems that a few systems still need special
  96. treatment. If you can send us fixes for these problems, we'd be
  97. grateful.
  98. FreeBSD 11.0:
  99. For a build supporting threads, please `pkg install' the following
  100. - pkgconf : provides pkg-config
  101. - gmake : /usr/bin/make does not work
  102. - boehm-gc-threaded : needed for threaded support
  103. Configure as:
  104. ./configure --with-bdw-gc=bdw-gc-threaded
  105. Alternately if you want a Guile without threads, then install boehm-gc
  106. and configure as:
  107. ./configure --without-threads
  108. Guile specific flags Accepted by Configure =================================
  109. If you run the configure script with no arguments, it should examine
  110. your system and set things up appropriately. However, there are a few
  111. switches specific to Guile you may find useful in some circumstances.
  112. --without-threads --- Build without thread support
  113. Build a Guile executable and library that supports multi-threading.
  114. The default is to enable threading support when your operating
  115. system offsers 'POSIX threads'. When you do not want threading, use
  116. `--without-threads'.
  117. --enable-deprecated=LEVEL
  118. Guile may contain features that are `deprecated'. When a feature is
  119. deprecated, it means that it is still there, but that there is a
  120. better way of achieving the same thing, and we'd rather have you use
  121. this better way. This allows us to eventually remove the old
  122. implementation and helps to keep Guile reasonably clean of historic
  123. baggage.
  124. See the file NEWS for a list of features that are currently
  125. deprecated. Each entry will also tell you what you should replace
  126. your code with.
  127. To give you some help with this process, and to encourage (OK,
  128. nudge) people to switch to the newer methods, Guile can emit
  129. warnings or errors when you use a deprecated feature. There is
  130. quite a range of possibilities, from being completely silent to
  131. giving errors at link time. What exactly happens is determined both
  132. by the value of the `--enable-deprecated' configuration option when
  133. Guile was built, and by the GUILE_WARN_DEPRECATED environment
  134. variable.
  135. It works like this:
  136. When Guile has been configured with `--enable-deprecated=no' (or,
  137. equivalently, with `--disable-deprecated') then all deprecated
  138. features are omitted from Guile. You will get "undefined
  139. reference", "variable unbound" or similar errors when you try to
  140. use them.
  141. When `--enable-deprecated=LEVEL' has been specified (for LEVEL not
  142. "no"), LEVEL will be used as the default value of the environment
  143. variable GUILE_WARN_DEPRECATED. A value of "yes" is changed to
  144. "summary" and "shutup" is changed to "no", however.
  145. When GUILE_WARN_DEPRECATED has the value "no", nothing special
  146. will happen when a deprecated feature is used.
  147. When GUILE_WARN_DEPRECATED has the value "summary", and a
  148. deprecated feature has been used, Guile will print this message at
  149. exit:
  150. Some deprecated features have been used. Set the environment
  151. variable GUILE_WARN_DEPRECATED to "detailed" and rerun the
  152. program to get more information. Set it to "no" to suppress
  153. this message.
  154. When GUILE_WARN_DEPRECATED has the value "detailed", a detailed
  155. warning is emitted immediatly for the first use of a deprecated
  156. feature.
  157. The default is `--enable-deprecated=yes'.
  158. In addition to setting GUILE_WARN_DEPRECATED in the environment, you
  159. can also use (debug-enable 'warn-deprecated) and (debug-disable
  160. 'warn-deprecated) to enable and disable the detailed messaged at run
  161. time.
  162. Additionally, if your toolchain is new enough, you will receive
  163. warnings at link time if you have a Guile extension that uses
  164. deprecated functions provided by Guile.
  165. --disable-shared --- Do not build shared libraries.
  166. --disable-static --- Do not build static libraries.
  167. Normally, both static and shared libraries will be built if your
  168. system supports them.
  169. --enable-debug-freelist --- Enable freelist debugging.
  170. This enables a debugging version of scm_cell and scm_double_cell,
  171. and also registers an extra primitive, the setter
  172. `gc-set-debug-check-freelist!'.
  173. Configure with the --enable-debug-freelist option to enable the
  174. gc-set-debug-check-freelist! primitive, and then use:
  175. (gc-set-debug-check-freelist! #t) # turn on checking of the freelist
  176. (gc-set-debug-check-freelist! #f) # turn off checking
  177. Checking of the freelist forces a traversal of the freelist and a
  178. garbage collection before each allocation of a cell. This can slow
  179. down the interpreter dramatically, so the setter should be used to
  180. turn on this extra processing only when necessary.
  181. --enable-debug-malloc --- Enable malloc debugging.
  182. Include code for debugging of calls to scm_malloc, scm_realloc, etc.
  183. It records the number of allocated objects of each kind. This is
  184. useful when searching for memory leaks.
  185. A Guile compiled with this option provides the primitive
  186. `malloc-stats' which returns an alist with pairs of kind and the
  187. number of objects of that kind.
  188. --enable-guile-debug --- Include internal debugging functions
  189. --disable-posix --- omit posix interfaces
  190. --disable-networking --- omit networking interfaces
  191. --disable-regex --- omit regular expression interfaces
  192. Cross building Guile =====================================================
  193. As of Guile 3.0.x, the build process produces a library, libguile-3.0,
  194. along with Guile "object files" containing bytecode to be interpreted by
  195. Guile's virtual machine. The bytecode format depends on the endianness
  196. and word size of the host CPU.
  197. Thus, when cross building Guile, you first need to configure, build and
  198. install it for your build host.
  199. Then, you may configure Guile for cross building:
  200. ./configure --host=i686-pc-cygwin --disable-shared
  201. A C compiler for the build system is required. If that doesn't suit it
  202. can be specified with the CC_FOR_BUILD variable in the usual way, for
  203. instance:
  204. ./configure --host=m68k-unknown-linux-gnu CC_FOR_BUILD=/my/local/gcc
  205. Guile for the build system can be specified similarly with the
  206. GUILE_FOR_BUILD variable, which defaults to whatever `guile' executable
  207. is found in $PATH. It must have the exact same version has the Guile
  208. that you intend to cross-build.
  209. Using Guile Without Installing It =========================================
  210. The "meta/" subdirectory of the Guile sources contains a script called
  211. "guile" that can be used to run the Guile that has just been built. Note
  212. that this is not the same "guile" as the one that is installed; this
  213. "guile" is a wrapper script that sets up the environment appropriately,
  214. then invokes the Guile binary.
  215. You may also build external packages against an uninstalled Guile build
  216. tree. The "uninstalled-env" script in the "meta/" subdirectory will set
  217. up an environment with a path including "meta/", a modified dynamic
  218. linker path, a modified PKG_CONFIG_PATH, etc.
  219. For example, you can enter this environment via invoking
  220. meta/uninstalled-env bash
  221. Within that shell, other packages should be able to build against
  222. uninstalled Guile.
  223. Installing SLIB ===========================================================
  224. In order to use SLIB from Guile you basically only need to put the
  225. `slib' directory _in_ one of the directories on Guile's load path.
  226. The standard installation is:
  227. 1. Obtain slib from http://www-swiss.ai.mit.edu/~jaffer/SLIB.html
  228. 2. Put it in Guile's data directory, that is the directory printed when
  229. you type
  230. guile-config info pkgdatadir
  231. at the shell prompt. This is normally `/usr/local/share/guile', so the
  232. directory will normally have full path `/usr/local/share/guile/slib'.
  233. 3. Start guile as a user with write access to the data directory and type
  234. (use-modules (ice-9 slib))
  235. at the Guile prompt. This will generate the slibcat catalog next to
  236. the slib directory.
  237. SLIB's `require' is provided by the Guile module (ice-9 slib).
  238. Example:
  239. (use-modules (ice-9 slib))
  240. (require 'primes)
  241. (prime? 7)
  242. Guile Documentation ==================================================
  243. The Guile Reference Manual (guile.info) is the primary documentation for
  244. Guile. A copy of the R5RS Scheme specification is included too
  245. (r5rs.info).
  246. Info format versions of this documentation are installed as part of
  247. the normal build process. The texinfo sources are under the doc
  248. directory, and other formats like Postscript, PDF, DVI or HTML can be
  249. generated from them with Tex and Texinfo tools.
  250. The doc directory also includes an example-smob subdirectory which has
  251. the example code from the "Defining New Types (Smobs)" chapter of the
  252. reference manual.
  253. The Guile WWW page is at
  254. http://www.gnu.org/software/guile/guile.html
  255. It contains a link to the Guile FAQ.
  256. About This Distribution ==============================================
  257. Interesting files include:
  258. - LICENSE, which contains the exact terms of the Guile license.
  259. - COPYING.LESSER, which contains the terms of the GNU Lesser General Public License.
  260. - COPYING, which contains the terms of the GNU General Public License.
  261. - INSTALL, which contains general instructions for building/installing Guile.
  262. - NEWS, which describes user-visible changes since the last release of Guile.
  263. Files are usually installed according to the prefix specified to
  264. configure, /usr/local by default. Building and installing gives you:
  265. Executables, in ${prefix}/bin:
  266. guile --- a stand-alone interpreter for Guile. With no arguments, this
  267. is a simple interactive Scheme interpreter. It can also be used
  268. as an interpreter for script files; see the NEWS file for details.
  269. guile-config --- a Guile script which provides the information necessary
  270. to link your programs against the Guile library.
  271. guile-snarf --- a script to parse declarations in your C code for
  272. Scheme-visible C functions, Scheme objects to be used by C code,
  273. etc.
  274. Libraries, in ${prefix}/lib. Depending on the platform and options
  275. given to configure, you may get shared libraries in addition
  276. to or instead of these static libraries:
  277. libguile.a --- an object library containing the Guile interpreter,
  278. You can use Guile in your own programs by linking against this.
  279. libguilereadline.a --- an object library containing glue code for the
  280. GNU readline library.
  281. libguile-srfi-*.a --- various SRFI support libraries
  282. Header files, in ${prefix}/include:
  283. libguile.h, guile/gh.h, libguile/*.h --- for libguile.
  284. guile-readline/readline.h --- for guile-readline.
  285. Support files, in ${prefix}/share/guile/<version>:
  286. ice-9/* --- run-time support for Guile: the module system,
  287. read-eval-print loop, some R4RS code and other infrastructure.
  288. oop/* --- the Guile Object-Oriented Programming System (GOOPS)
  289. scripts/* --- executable modules, i.e., scheme programs that can be both
  290. called as an executable from the shell, and loaded and used as a
  291. module from scheme code. See scripts/README for more info.
  292. srfi/* --- SRFI support modules. See srfi/README for more info.
  293. Automake macros, in ${prefix}/share/aclocal:
  294. guile.m4
  295. Documentation in Info format, in ${prefix}/info:
  296. guile --- Guile reference manual.
  297. GOOPS --- GOOPS reference manual.
  298. r5rs --- Revised(5) Report on the Algorithmic Language Scheme.
  299. The Guile source tree is laid out as follows:
  300. libguile:
  301. The Guile Scheme interpreter --- both the object library
  302. for you to link with your programs, and the executable you can run.
  303. module: Scheme libraries included with Guile.
  304. guile-readline:
  305. The glue code for using GNU readline with Guile. This
  306. will be build when configure can find a recent enough readline
  307. library on your system.
  308. doc: Documentation (see above).
  309. Git Repository Access ================================================
  310. Guile's source code is stored in a Git repository at Savannah. Anyone
  311. can access it using `git-clone' from one of the following URLs:
  312. git://git.sv.gnu.org/guile.git
  313. http://git.sv.gnu.org/r/guile.git
  314. Developers with a Savannah SSH account can also access it from:
  315. ssh://git.sv.gnu.org/srv/git/guile.git
  316. The repository can also be browsed on-line at the following address:
  317. http://git.sv.gnu.org/gitweb/?p=guile.git
  318. For more information on Git, please see:
  319. http://git.or.cz/
  320. Please send problem reports to <bug-guile@gnu.org>.