README 17 KB

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