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