Remove mention of `guile' module; it's now defunct.
[bpt/guile.git] / README
CommitLineData
cf78e9e8 1This is a nightly snapshot of Guile, a portable, embeddable Scheme
9518bec3
JB
2implementation written in C. Guile provides a machine independent
3execution platform that can be linked in as a library when building
4extensible programs.
7fcc90c4 5
9518bec3 6Please send bug reports to bug-guile@prep.ai.mit.edu.
7fcc90c4 7
4c8980a2 8
cf78e9e8
JB
9Important Facts About Snapshots ======================================
10
11Please keep in mind that these sources are strictly experimental; they
12will usually not be well-tested, and may not even compile on some
13systems. They may contain interfaces which will change. They will
14usually not be of sufficient quality for use by people not comfortable
15hacking the innards of Guile. Caveat!
16
17However, we're providing them anyway for several reasons. We'd like
18to encourage people to get involved in developing Guile. People
19willing to use the bleeding edge of development can get earlier access
20to new, experimental features. Patches submitted relative to recent
21snapshots will be easier for us to evaluate and install, since the
22patch's original sources will be closer to what we're working with.
23And it allows us to start testing features earlier.
24
25Nightly snapshots of the Guile development sources are available via
59b8e23b 26anonymous FTP from ftp.red-bean.com, as /pub/guile/guile-snap.tar.gz.
cf78e9e8 27
59b8e23b
JB
28Via the web, that's: ftp://ftp.red-bean.com/pub/guile/guile-snap.tar.gz
29For getit, that's: ftp.red-bean.com:/pub/guile/guile-snap.tar.gz
cf78e9e8 30
271a1aac
JB
31
32The latest official Guile release is available via anonymous FTP from
5761caf8 33prep.ai.mit.edu, as /pub/gnu/guile-1.1.tar.gz.
9518bec3 34
5761caf8
JB
35Via the web, that's: ftp://prep.ai.mit.edu/pub/gnu/guile-1.1.tar.gz
36For getit, that's: prep.ai.mit.edu:/pub/gnu/guile-1.1.tar.gz
fb21f202 37
49becc4d
JB
38The mailing list `guile@cygnus.com' carries discussions, questions,
39and often answers, about Guile. To subscribe, send mail to
40guile-request@cygnus.com. Of course, please send bug reports (and
41fixes!) to bug-guile@prep.ai.mit.edu.
42
cf78e9e8
JB
43
44About This Distribution ==============================================
45
49becc4d
JB
46Building and installing this distribution gives you:
47guile --- a stand-alone interpreter for Guile, usually installed in
cf78e9e8
JB
48 /usr/local/bin. With no arguments, this is a simple
49 interactive Scheme interpreter. It can also be used as an
50 interpreter for script files; see the NEWS file for details.
49becc4d 51libguile.a --- an object library containing the Guile interpreter,
cf78e9e8
JB
52 usually installed in /usr/local/lib. You can use Guile in
53 your own programs by linking against this.
1dfe003f
JB
54libqt.a --- an object library containing the QuickThreads primitives.
55 If you enabled thread support when you configured Guile, you
56 will need to link your code against this too.
49becc4d 57<libguile.h>, <libguile/*.h> --- header files for libguile.a, usually
cf78e9e8 58 installed in /usr/local/include.
0196b30a 59
5c54da76
JB
60
61Interesting files include:
62- INSTALL, which contains instructions on building and installing Guile.
63- NEWS, which describes user-visible changes since the last release of Guile.
64- COPYING, which describes the terms under which you may redistribute
65 Guile, and explains that there is no warranty.
66
67The Guile source tree is laid out as follows:
68
1325feea 69libguile:
cf78e9e8
JB
70 The Guile Scheme interpreter --- both the object library
71 for you to link with your programs, and the executable you can run.
1325feea 72ice-9: Guile's module system, initialization code, and other infrastructure.
0682f7ab 73
cf78e9e8
JB
74qt: A cooperative threads package from Washington University,
75 which Guile can use. If you configure Guile with the
3a629497
JB
76 --with-threads flag, you will need to link against the -lqt
77 library, found in this directory. Qt is under a separate
78 copyright; see `qt/README' for more details.
ee81f9ca 79
1dfe003f
JB
80(The present release doesn't include any documentation; the Guile
81manual is incomplete, and is currently being revised.)
82
4c8980a2 83
3c555f81
JB
84Hacking It Yourself ==================================================
85
86As distributed, Guile needs only an ANSI C compiler and a Unix system
87to compile. However, Guile's makefiles, configuration scripts, and a
88few other files are automatically generated, not written by hand. If
89you want to make changes to the system (which we encourage!) you will
90find it helpful to have the tools we use to develop Guile. They
91are the following:
92
dec4cca9 93Autoconf 2.12 --- a system for automatically generating `configure'
cf78e9e8
JB
94 scripts from templates which list the non-portable features a
95 program would like to use. Available in
96 "ftp://prep.ai.mit.edu/pub/gnu".
3c555f81 97
3628c737 98Automake 1.1p --- a system for automatically generating Makefiles that
cf78e9e8
JB
99 conform to the (rather Byzantine) GNU coding standards. The
100 nice thing is that it takes care of hairy targets like 'make
101 dist' and 'make distclean', and automatically generates
2b272b1e 102 Makefile dependencies. Automake is available in
cf78e9e8 103 "ftp://ftp.cygnus.com/pub/tromey".
3c555f81 104
2b272b1e
JB
105 Before using automake, you may need to copy `threads.m4' and
106 `guile.m4' from the top directory of the Guile core disty to
107 `/usr/local/share/aclocal.
108
12afb619 109libtool 0.9d --- a system for managing the zillion hairy options needed
cf78e9e8
JB
110 on various systems to produce shared libraries. Available in
111 "ftp://alpha.gnu.ai.mit.edu/gnu".
3c555f81 112
05264287
JB
113You are lost in a little maze of automatically generated files, all
114different.
cf78e9e8 115>
05264287 116
3c555f81 117
9518bec3
JB
118Authors And Contributors =============================================
119
01cf3840
JB
120Many people have generously contributed to Guile. However, any errors
121are the responsibility of the primary Guile maintainer, Jim Blandy.
9518bec3
JB
122
123Mikael Djurfeldt designed and implemented:
01cf3840
JB
124* the source-level debugging support (although the debugger's user
125 interface is not yet complete)
2a786759
JB
126* stack overflow detection,
127* the GDB patches to support debugging mixed Scheme/C code,
9518bec3 128* the original implementation of weak hash tables,
c5ac623b
JB
129* enhancements to the `threads' interface (based on Anthony Green's
130 work), and
2a786759
JB
131* detection of circular references during printing.
132
3a629497 133Mark Galassi contributed the Guile high-level functions (gh_*), and
01cf3840
JB
134wrote the guile-programmer and guile-user manuals. (These are in the
135process of revision.)
136
3a629497 137Anthony Green wrote the original version of `threads', the interface
01cf3840
JB
138between Guile and qt.
139
c5ac623b
JB
140Gary Houston wrote much of the Unix system call support, including the
141socket support, and did a lot of work on the error handling code.
01cf3840
JB
142
143Tom Lord librarified SCM, yielding Guile. He wrote Guile's operating
144system, Ice-9, and connected Guile to Tcl/Tk and the `rx' regular
145expression matcher.
146
147Aubrey Jaffer seriously tuned performance and added features. He
148designed many hairy but beautiful parts of the tag system and
149evaluator.
150
151George Carrette wrote SIOD, a stand-alone scheme interpreter.
152Although most of this code as been rewritten or replaced over time,
153the garbage collector from SIOD is still an important part of Guile.