merge guile-vm to guile
[bpt/guile.git] / README
CommitLineData
04873705 1!!! This is not a Guile release; it is a source tree retrieved via
4b824aae 2Git or as a nightly snapshot at some random time after the
4800a61a 3Guile 1.8 release. If this were a Guile release, you would not see
04873705 4this message. !!! [fixme: zonk on release]
c299f186 5
0f24e75b 6This is a 1.9 development version of Guile, Project GNU's extension
f2a75d81
RB
7language library. Guile is an interpreter for Scheme, packaged as a
8library that you can link into your applications to give them their
9own scripting language. Guile will eventually support other languages
10as well, giving users of Guile-based applications a choice of
11languages.
12
0f24e75b 13Guile versions with an odd middle number, i.e. 1.9.* are unstable
f2a75d81
RB
14development versions. Even middle numbers indicate stable versions.
15This has been the case since the 1.3.* series.
16
0f24e75b 17The next stable release will likely be version 1.10.0.
7fcc90c4 18
51d079ab
NJ
19Please send bug reports to bug-guile@gnu.org. Note that you must be
20subscribed to this list first, in order to successfully send a report
21to it.
86f40248 22
d165aa15
RB
23See the LICENSE file for the specific terms that apply to Guile.
24
25
26Additional INSTALL instructions ===========================================
27
28Generic instructions for configuring and compiling Guile can be found
29in the INSTALL file. Guile specific information and configure options
30can be found below, including instructions for installing SLIB.
31
a98dbc87
MV
32Guile requires a few external packages and can optionally use a number
33of external packages such as `readline' when they are available.
34Guile expects to be able to find these packages in the default
35compiler setup, it does not try to make any special arrangements
36itself. For example, for the `readline' package, Guile expects to be
37able to find the include file <readline/readline.h>, without passing
38any special `-I' options to the compiler.
d165aa15
RB
39
40If you installed an external package, and you used the --prefix
41installation option to install it somewhere else than /usr/local, you
42must arrange for your compiler to find it by default. If that
43compiler is gcc, one convenient way of making such arrangements is to
44use the --with-local-prefix option during installation, naming the
45same directory as you used in the --prefix option of the package. In
46particular, it is not good enough to use the same --prefix option when
47you install gcc and the package; you need to use the
48--with-local-prefix option as well. See the gcc documentation for
49more details.
50
51
a98dbc87
MV
52Required External Packages ================================================
53
54Guile requires the following external packages:
55
56 - GNU MP, at least version 4.1
57
58 GNU MP is used for bignum arithmetic. It is available from
59 http://swox.com/gmp
60
61 - libltdl from libtool, at least from libtool version 1.5.6
62
63 libltdl is used for loading extensions at run-time. It is
64 available from http://www.gnu.org/software/libtool/
65
66
d165aa15
RB
67Special Instructions For Some Systems =====================================
68
69We would like Guile to build on all systems using the simple
70instructions above, but it seems that a few systems still need special
71treatment. If you can send us fixes for these problems, we'd be
72grateful.
73
70bb8113 74 <none yet listed>
d165aa15
RB
75
76Guile specific flags Accepted by Configure =================================
77
78If you run the configure script with no arguments, it should examine
79your system and set things up appropriately. However, there are a few
80switches specific to Guile you may find useful in some circumstances.
81
4f416616 82--without-threads --- Build without thread support
d165aa15 83
70bb8113 84 Build a Guile executable and library that supports multi-threading.
d165aa15 85
70bb8113
MV
86 The default is to enable threading support when your operating
87 system offsers 'POSIX threads'. When you do not want threading, use
88 `--without-threads'.
d165aa15
RB
89
90--enable-deprecated=LEVEL
91
92 Guile may contain features that are `deprecated'. When a feature is
3623a170
MV
93 deprecated, it means that it is still there, but that there is a
94 better way of achieving the same thing, and we'd rather have you use
95 this better way. This allows us to eventually remove the old
96 implementation and helps to keep Guile reasonably clean of historic
97 baggage.
98
99 Deprecated features are considered harmful; using them is likely a
100 bug. See below for the related notion of `discouraged' features,
70bb8113 101 which are OK but have fallen out of favor.
d165aa15
RB
102
103 See the file NEWS for a list of features that are currently
104 deprecated. Each entry will also tell you what you should replace
105 your code with.
106
107 To give you some help with this process, and to encourage (OK,
108 nudge) people to switch to the newer methods, Guile can emit
109 warnings or errors when you use a deprecated feature. There is
110 quite a range of possibilities, from being completely silent to
111 giving errors at link time. What exactly happens is determined both
112 by the value of the `--enable-deprecated' configuration option when
113 Guile was built, and by the GUILE_WARN_DEPRECATED environment
114 variable.
115
116 It works like this:
117
118 When Guile has been configured with `--enable-deprecated=no' (or,
119 equivalently, with `--disable-deprecated') then all deprecated
120 features are omitted from Guile. You will get "undefined
121 reference", "variable unbound" or similar errors when you try to
122 use them.
123
124 When `--enable-deprecated=LEVEL' has been specified (for LEVEL not
125 "no"), LEVEL will be used as the default value of the environment
126 variable GUILE_WARN_DEPRECATED. A value of "yes" is changed to
127 "summary" and "shutup" is changed to "no", however.
128
129 When GUILE_WARN_DEPRECATED has the value "no", nothing special
130 will happen when a deprecated feature is used.
131
132 When GUILE_WARN_DEPRECATED has the value "summary", and a
133 deprecated feature has been used, Guile will print this message at
134 exit:
135
136 Some deprecated features have been used. Set the environment
137 variable GUILE_WARN_DEPRECATED to "detailed" and rerun the
138 program to get more information. Set it to "no" to suppress
139 this message.
140
141 When GUILE_WARN_DEPRECATED has the value "detailed", a detailed
142 warning is emitted immediatly for the first use of a deprecated
143 feature.
144
145 The default is `--enable-deprecated=yes'.
146
8f305401
MV
147 In addition to setting GUILE_WARN_DEPRECATED in the environment, you
148 can also use (debug-enable 'warn-deprecated) and (debug-disable
149 'warn-deprecated) to enable and disable the detailed messaged at run
150 time.
151
3623a170
MV
152--disable-discouraged
153
154 In addition to deprecated features, Guile can also contain things
155 that are merely `discouraged'. It is OK to continue to use these
156 features in old code, but new code should avoid them since there are
157 better alternatives.
158
159 There is nothing wrong with a discouraged feature per se, but they
160 might have strange names, or be non-standard, for example. Avoiding
161 them will make your code better.
162
d165aa15
RB
163--disable-shared --- Do not build shared libraries.
164--disable-static --- Do not build static libraries.
165
166 Normally, both static and shared libraries will be built if your
167 system supports them.
168
d165aa15
RB
169--enable-debug-freelist --- Enable freelist debugging.
170
70bb8113
MV
171 This enables a debugging version of scm_cell and scm_double_cell,
172 and also registers an extra primitive, the setter
d165aa15
RB
173 `gc-set-debug-check-freelist!'.
174
175 Configure with the --enable-debug-freelist option to enable the
176 gc-set-debug-check-freelist! primitive, and then use:
177
178 (gc-set-debug-check-freelist! #t) # turn on checking of the freelist
179 (gc-set-debug-check-freelist! #f) # turn off checking
180
181 Checking of the freelist forces a traversal of the freelist and a
182 garbage collection before each allocation of a cell. This can slow
183 down the interpreter dramatically, so the setter should be used to
184 turn on this extra processing only when necessary.
185
d165aa15
RB
186--enable-debug-malloc --- Enable malloc debugging.
187
70bb8113 188 Include code for debugging of calls to scm_malloc, scm_realloc, etc.
d165aa15 189
70bb8113
MV
190 It records the number of allocated objects of each kind. This is
191 useful when searching for memory leaks.
d165aa15
RB
192
193 A Guile compiled with this option provides the primitive
194 `malloc-stats' which returns an alist with pairs of kind and the
195 number of objects of that kind.
196
d165aa15 197--enable-guile-debug --- Include internal debugging functions
d165aa15
RB
198--disable-posix --- omit posix interfaces
199--disable-networking --- omit networking interfaces
200--disable-regex --- omit regular expression interfaces
201
202
203Cross building Guile =====================================================
204
205As of guile-1.5.x, the build process uses compiled C files for
206snarfing, and (indirectly, through libtool) for linking, and uses the
207guile executable for generating documentation.
208
209When cross building guile, you first need to configure, build and
210install guile for your build host.
211
212Then, you may configure guile for cross building, eg:
213
214 ./configure --host=i686-pc-cygwin --disable-shared
215
cd9d439e
KR
216A C compiler for the build system is required. The default is
217"PATH=/usr/bin:$PATH cc". If that doesn't suit it can be specified
218with the CC_FOR_BUILD variable in the usual way, for instance
d165aa15 219
cd9d439e
KR
220 ./configure --host=m68k-unknown-linux-gnu CC_FOR_BUILD=/my/local/gcc
221
1028fcb2
KR
222Guile for the build system can be specified similarly with the
223GUILE_FOR_BUILD variable, it defaults to just "guile".
d165aa15
RB
224
225
226Using Guile Without Installing It =========================================
227
70bb8113
MV
228The top directory of the Guile sources contains a script called
229"pre-inst-guile" that can be used to run the Guile that has just been
230built.
d165aa15
RB
231
232
233Installing SLIB ===========================================================
234
235In order to use SLIB from Guile you basically only need to put the
236`slib' directory _in_ one of the directories on Guile's load path.
237
238The standard installation is:
239
240 1. Obtain slib from http://www-swiss.ai.mit.edu/~jaffer/SLIB.html
241
242 2. Put it in Guile's data directory, that is the directory printed when
243 you type
244
245 guile-config info pkgdatadir
246
247 at the shell prompt. This is normally `/usr/local/share/guile', so the
248 directory will normally have full path `/usr/local/share/guile/slib'.
249
250 3. Start guile as a user with write access to the data directory and type
251
252 (use-modules (ice-9 slib))
253
254 at the Guile prompt. This will generate the slibcat catalog next to
255 the slib directory.
256
257SLIB's `require' is provided by the Guile module (ice-9 slib).
258
259Example:
260
261 (use-modules (ice-9 slib))
262 (require 'primes)
263 (prime? 7)
264
70bb8113 265
394a535e
MD
266Guile Documentation ==================================================
267
ea8ac9ac
KR
268If you've never used Scheme before, then the Guile Tutorial
269(guile-tut.info) is a good starting point. The Guile Reference Manual
270(guile.info) is the primary documentation for Guile. The Goops object
271system is documented separately (goops.info). A copy of the R5RS
272Scheme specification is included too (r5rs.info).
273
274Info format versions of this documentation are installed as part of
275the normal build process. The texinfo sources are under the doc
276directory, and other formats like Postscript, PDF, DVI or HTML can be
277generated from them with Tex and Texinfo tools.
278
279The doc directory also includes an example-smob subdirectory which has
280the example code from the "Defining New Types (Smobs)" chapter of the
281reference manual.
394a535e 282
b5074b23
MD
283The Guile WWW page is at
284
285 http://www.gnu.org/software/guile/guile.html
286
287It contains a link to the Guile FAQ.
288
cf78e9e8
JB
289About This Distribution ==============================================
290
f89a27fa 291Interesting files include:
ae8de16e 292
d165aa15
RB
293- LICENSE, which contains the exact terms of the Guile license.
294- COPYING, which contains the terms of the GNU General Public License.
295- INSTALL, which contains general instructions for building/installing Guile.
f89a27fa 296- NEWS, which describes user-visible changes since the last release of Guile.
f89a27fa 297
ae8de16e
GH
298Files are usually installed according to the prefix specified to
299configure, /usr/local by default. Building and installing gives you:
300
301Executables, in ${prefix}/bin:
302
04873705
TTN
303 guile --- a stand-alone interpreter for Guile. With no arguments, this
304 is a simple interactive Scheme interpreter. It can also be used
305 as an interpreter for script files; see the NEWS file for details.
306 guile-config --- a Guile script which provides the information necessary
307 to link your programs against the Guile library.
308 guile-snarf --- a script to parse declarations in your C code for
309 Scheme-visible C functions, Scheme objects to be used by C code,
310 etc.
ae8de16e
GH
311
312Libraries, in ${prefix}/lib. Depending on the platform and options
313 given to configure, you may get shared libraries in addition
314 to or instead of these static libraries:
0a7fcdbc 315
04873705
TTN
316 libguile.a --- an object library containing the Guile interpreter,
317 You can use Guile in your own programs by linking against this.
04873705 318 libguilereadline.a --- an object library containing glue code for the
70bb8113
MV
319 GNU readline library.
320
04873705 321 libguile-srfi-*.a --- various SRFI support libraries
ae8de16e
GH
322
323Header files, in ${prefix}/include:
324
04873705
TTN
325 libguile.h, guile/gh.h, libguile/*.h --- for libguile.
326 guile-readline/readline.h --- for guile-readline.
ae8de16e
GH
327
328Support files, in ${prefix}/share/guile/<version>:
329
04873705
TTN
330 ice-9/* --- run-time support for Guile: the module system,
331 read-eval-print loop, some R4RS code and other infrastructure.
332 oop/* --- the Guile Object-Oriented Programming System (GOOPS)
333 scripts/* --- executable modules, i.e., scheme programs that can be both
334 called as an executable from the shell, and loaded and used as a
335 module from scheme code. See scripts/README for more info.
336 srfi/* --- SRFI support modules. See srfi/README for more info.
ae8de16e
GH
337
338Automake macros, in ${prefix}/share/aclocal:
339
04873705 340 guile.m4
ae8de16e
GH
341
342Documentation in Info format, in ${prefix}/info:
343
c08a1190
GH
344 guile --- Guile reference manual.
345
346 guile-tut --- Guile tutorial.
347
348 GOOPS --- GOOPS reference manual.
349
350 r5rs --- Revised(5) Report on the Algorithmic Language Scheme.
351
0196b30a 352
5c54da76
JB
353The Guile source tree is laid out as follows:
354
1325feea 355libguile:
cf78e9e8
JB
356 The Guile Scheme interpreter --- both the object library
357 for you to link with your programs, and the executable you can run.
1325feea 358ice-9: Guile's module system, initialization code, and other infrastructure.
17f8d40c
JB
359guile-config:
360 Source for the guile-config script.
621e8324
MV
361guile-readline:
362 The glue code for using GNU readline with Guile. This
363 will be build when configure can find a recent enough readline
364 library on your system.
ae8de16e 365doc: Documentation (see above).
4c8980a2 366
4b824aae 367Git Repository Access ================================================
c11f9405 368
4b824aae
LC
369Guile's source code is stored in a Git repository at Savannah. Anyone
370can access it using `git-clone' from one of the following URLs:
c11f9405 371
4b824aae
LC
372 git://git.sv.gnu.org/guile.git
373 http://git.sv.gnu.org/r/guile.git
349d9c1f 374
4b824aae
LC
375Developers with a Savannah SSH account can also access it from:
376
377 ssh://git.sv.gnu.org/srv/git/guile.git
378
379The repository can also be browsed on-line at the following address:
380
381 http://git.sv.gnu.org/gitweb/?p=guile.git
382
383For more information on Git, please see:
384
385 http://git.or.cz/
386
387Please send problem reports to <bug-guile@gnu.org>.