README 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461
  1. This is a prerelease of version 3.0 of Guile, Project GNU's extension
  2. language library. Guile is an implementation of the Scheme programming
  3. language, packaged as a library that can be linked into applications to
  4. give them their own extension language. Guile supports other languages
  5. as well, giving 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. - texinfo
  85. Guile uses `makeinfo' to create info documentation in the directory
  86. `doc' and `install-info' (which is provided by a separate package in
  87. some distributions) to install it.
  88. Special Instructions For Some Systems =====================================
  89. We would like Guile to build on all systems using the simple
  90. instructions above, but it seems that a few systems still need special
  91. treatment. If you can send us fixes for these problems, we'd be
  92. grateful.
  93. FreeBSD 11.0:
  94. For a build supporting threads, please `pkg install' the following
  95. - pkgconf : provides pkg-config
  96. - gmake : /usr/bin/make does not work
  97. - boehm-gc-threaded : needed for threaded support
  98. Configure as:
  99. ./configure --with-bdw-gc=bdw-gc-threaded
  100. Alternately if you want a Guile without threads, then install boehm-gc
  101. and configure as:
  102. ./configure --without-threads
  103. Guile specific flags Accepted by Configure =================================
  104. If you run the configure script with no arguments, it should examine
  105. your system and set things up appropriately. However, there are a few
  106. switches specific to Guile you may find useful in some circumstances.
  107. --without-threads --- Build without thread support
  108. Build a Guile executable and library that supports multi-threading.
  109. The default is to enable threading support when your operating
  110. system offsers 'POSIX threads'. When you do not want threading, use
  111. `--without-threads'.
  112. --enable-deprecated=LEVEL
  113. Guile may contain features that are `deprecated'. When a feature is
  114. deprecated, it means that it is still there, but that there is a
  115. better way of achieving the same thing, and we'd rather have you use
  116. this better way. This allows us to eventually remove the old
  117. implementation and helps to keep Guile reasonably clean of historic
  118. baggage.
  119. See the file NEWS for a list of features that are currently
  120. deprecated. Each entry will also tell you what you should replace
  121. your code with.
  122. To give you some help with this process, and to encourage (OK,
  123. nudge) people to switch to the newer methods, Guile can emit
  124. warnings or errors when you use a deprecated feature. There is
  125. quite a range of possibilities, from being completely silent to
  126. giving errors at link time. What exactly happens is determined both
  127. by the value of the `--enable-deprecated' configuration option when
  128. Guile was built, and by the GUILE_WARN_DEPRECATED environment
  129. variable.
  130. It works like this:
  131. When Guile has been configured with `--enable-deprecated=no' (or,
  132. equivalently, with `--disable-deprecated') then all deprecated
  133. features are omitted from Guile. You will get "undefined
  134. reference", "variable unbound" or similar errors when you try to
  135. use them.
  136. When `--enable-deprecated=LEVEL' has been specified (for LEVEL not
  137. "no"), LEVEL will be used as the default value of the environment
  138. variable GUILE_WARN_DEPRECATED. A value of "yes" is changed to
  139. "summary" and "shutup" is changed to "no", however.
  140. When GUILE_WARN_DEPRECATED has the value "no", nothing special
  141. will happen when a deprecated feature is used.
  142. When GUILE_WARN_DEPRECATED has the value "summary", and a
  143. deprecated feature has been used, Guile will print this message at
  144. exit:
  145. Some deprecated features have been used. Set the environment
  146. variable GUILE_WARN_DEPRECATED to "detailed" and rerun the
  147. program to get more information. Set it to "no" to suppress
  148. this message.
  149. When GUILE_WARN_DEPRECATED has the value "detailed", a detailed
  150. warning is emitted immediatly for the first use of a deprecated
  151. feature.
  152. The default is `--enable-deprecated=yes'.
  153. In addition to setting GUILE_WARN_DEPRECATED in the environment, you
  154. can also use (debug-enable 'warn-deprecated) and (debug-disable
  155. 'warn-deprecated) to enable and disable the detailed messaged at run
  156. time.
  157. Additionally, if your toolchain is new enough, you will receive
  158. warnings at link time if you have a Guile extension that uses
  159. deprecated functions provided by Guile.
  160. --disable-shared --- Do not build shared libraries.
  161. --disable-static --- Do not build static libraries.
  162. Normally, both static and shared libraries will be built if your
  163. system supports them.
  164. --enable-debug-freelist --- Enable freelist debugging.
  165. This enables a debugging version of scm_cell and scm_double_cell,
  166. and also registers an extra primitive, the setter
  167. `gc-set-debug-check-freelist!'.
  168. Configure with the --enable-debug-freelist option to enable the
  169. gc-set-debug-check-freelist! primitive, and then use:
  170. (gc-set-debug-check-freelist! #t) # turn on checking of the freelist
  171. (gc-set-debug-check-freelist! #f) # turn off checking
  172. Checking of the freelist forces a traversal of the freelist and a
  173. garbage collection before each allocation of a cell. This can slow
  174. down the interpreter dramatically, so the setter should be used to
  175. turn on this extra processing only when necessary.
  176. --enable-debug-malloc --- Enable malloc debugging.
  177. Include code for debugging of calls to scm_malloc, scm_realloc, etc.
  178. It records the number of allocated objects of each kind. This is
  179. useful when searching for memory leaks.
  180. A Guile compiled with this option provides the primitive
  181. `malloc-stats' which returns an alist with pairs of kind and the
  182. number of objects of that kind.
  183. --enable-guile-debug --- Include internal debugging functions
  184. --disable-posix --- omit posix interfaces
  185. --disable-networking --- omit networking interfaces
  186. --disable-regex --- omit regular expression interfaces
  187. Cross building Guile =====================================================
  188. As of Guile 3.0.x, the build process produces a library, libguile-3.0,
  189. along with Guile "object files" containing bytecode to be interpreted by
  190. Guile's virtual machine. The bytecode format depends on the endianness
  191. and word size of the host CPU.
  192. Thus, when cross building Guile, you first need to configure, build and
  193. install it for your build host.
  194. Then, you may configure Guile for cross building:
  195. ./configure --host=i686-pc-cygwin --disable-shared
  196. A C compiler for the build system is required. If that doesn't suit it
  197. can be specified with the CC_FOR_BUILD variable in the usual way, for
  198. instance:
  199. ./configure --host=m68k-unknown-linux-gnu CC_FOR_BUILD=/my/local/gcc
  200. Guile for the build system can be specified similarly with the
  201. GUILE_FOR_BUILD variable, which defaults to whatever `guile' executable
  202. is found in $PATH. It must have the exact same version has the Guile
  203. that you intend to cross-build.
  204. Using Guile Without Installing It =========================================
  205. The "meta/" subdirectory of the Guile sources contains a script called
  206. "guile" that can be used to run the Guile that has just been built. Note
  207. that this is not the same "guile" as the one that is installed; this
  208. "guile" is a wrapper script that sets up the environment appropriately,
  209. then invokes the Guile binary.
  210. You may also build external packages against an uninstalled Guile build
  211. tree. The "uninstalled-env" script in the "meta/" subdirectory will set
  212. up an environment with a path including "meta/", a modified dynamic
  213. linker path, a modified PKG_CONFIG_PATH, etc.
  214. For example, you can enter this environment via invoking
  215. meta/uninstalled-env bash
  216. Within that shell, other packages should be able to build against
  217. uninstalled Guile.
  218. Installing SLIB ===========================================================
  219. In order to use SLIB from Guile you basically only need to put the
  220. `slib' directory _in_ one of the directories on Guile's load path.
  221. The standard installation is:
  222. 1. Obtain slib from http://www-swiss.ai.mit.edu/~jaffer/SLIB.html
  223. 2. Put it in Guile's data directory, that is the directory printed when
  224. you type
  225. guile-config info pkgdatadir
  226. at the shell prompt. This is normally `/usr/local/share/guile', so the
  227. directory will normally have full path `/usr/local/share/guile/slib'.
  228. 3. Start guile as a user with write access to the data directory and type
  229. (use-modules (ice-9 slib))
  230. at the Guile prompt. This will generate the slibcat catalog next to
  231. the slib directory.
  232. SLIB's `require' is provided by the Guile module (ice-9 slib).
  233. Example:
  234. (use-modules (ice-9 slib))
  235. (require 'primes)
  236. (prime? 7)
  237. Guile Documentation ==================================================
  238. The Guile Reference Manual (guile.info) is the primary documentation for
  239. Guile. A copy of the R5RS Scheme specification is included too
  240. (r5rs.info).
  241. Info format versions of this documentation are installed as part of
  242. the normal build process. The texinfo sources are under the doc
  243. directory, and other formats like Postscript, PDF, DVI or HTML can be
  244. generated from them with Tex and Texinfo tools.
  245. The doc directory also includes an example-smob subdirectory which has
  246. the example code from the "Defining New Types (Smobs)" chapter of the
  247. reference manual.
  248. The Guile WWW page is at
  249. http://www.gnu.org/software/guile/guile.html
  250. It contains a link to the Guile FAQ.
  251. About This Distribution ==============================================
  252. Interesting files include:
  253. - LICENSE, which contains the exact terms of the Guile license.
  254. - COPYING.LESSER, which contains the terms of the GNU Lesser General Public License.
  255. - COPYING, which contains the terms of the GNU General Public License.
  256. - INSTALL, which contains general instructions for building/installing Guile.
  257. - NEWS, which describes user-visible changes since the last release of Guile.
  258. Files are usually installed according to the prefix specified to
  259. configure, /usr/local by default. Building and installing gives you:
  260. Executables, in ${prefix}/bin:
  261. guile --- a stand-alone interpreter for Guile. With no arguments, this
  262. is a simple interactive Scheme interpreter. It can also be used
  263. as an interpreter for script files; see the NEWS file for details.
  264. guile-config --- a Guile script which provides the information necessary
  265. to link your programs against the Guile library.
  266. guile-snarf --- a script to parse declarations in your C code for
  267. Scheme-visible C functions, Scheme objects to be used by C code,
  268. etc.
  269. Libraries, in ${prefix}/lib. Depending on the platform and options
  270. given to configure, you may get shared libraries in addition
  271. to or instead of these static libraries:
  272. libguile.a --- an object library containing the Guile interpreter,
  273. You can use Guile in your own programs by linking against this.
  274. libguilereadline.a --- an object library containing glue code for the
  275. GNU readline library.
  276. libguile-srfi-*.a --- various SRFI support libraries
  277. Header files, in ${prefix}/include:
  278. libguile.h, guile/gh.h, libguile/*.h --- for libguile.
  279. guile-readline/readline.h --- for guile-readline.
  280. Support files, in ${prefix}/share/guile/<version>:
  281. ice-9/* --- run-time support for Guile: the module system,
  282. read-eval-print loop, some R4RS code and other infrastructure.
  283. oop/* --- the Guile Object-Oriented Programming System (GOOPS)
  284. scripts/* --- executable modules, i.e., scheme programs that can be both
  285. called as an executable from the shell, and loaded and used as a
  286. module from scheme code. See scripts/README for more info.
  287. srfi/* --- SRFI support modules. See srfi/README for more info.
  288. Automake macros, in ${prefix}/share/aclocal:
  289. guile.m4
  290. Documentation in Info format, in ${prefix}/info:
  291. guile --- Guile reference manual.
  292. GOOPS --- GOOPS reference manual.
  293. r5rs --- Revised(5) Report on the Algorithmic Language Scheme.
  294. The Guile source tree is laid out as follows:
  295. libguile:
  296. The Guile Scheme interpreter --- both the object library
  297. for you to link with your programs, and the executable you can run.
  298. module: Scheme libraries included with Guile.
  299. guile-readline:
  300. The glue code for using GNU readline with Guile. This
  301. will be build when configure can find a recent enough readline
  302. library on your system.
  303. doc: Documentation (see above).
  304. Git Repository Access ================================================
  305. Guile's source code is stored in a Git repository at Savannah. Anyone
  306. can access it using `git-clone' from one of the following URLs:
  307. git://git.sv.gnu.org/guile.git
  308. http://git.sv.gnu.org/r/guile.git
  309. Developers with a Savannah SSH account can also access it from:
  310. ssh://git.sv.gnu.org/srv/git/guile.git
  311. The repository can also be browsed on-line at the following address:
  312. http://git.sv.gnu.org/gitweb/?p=guile.git
  313. For more information on Git, please see:
  314. http://git.or.cz/
  315. Please send problem reports to <bug-guile@gnu.org>.