*** empty log message ***
[bpt/guile.git] / README
CommitLineData
271a1aac 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
271a1aac
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
26anonymous FTP from ftp.cyclic.com, as /pub/guile/guile-snap.tar.gz.
27
28Via the web, that's: ftp://ftp.cyclic.com/pub/guile/guile-snap.tar.gz
29For getit, that's: ftp.cyclic.com:/pub/guile/guile-snap.tar.gz
30
31
32The latest official Guile release is available via anonymous FTP from
4b521edb 33prep.ai.mit.edu, as /pub/gnu/guile-1.0.tar.gz.
9518bec3 34
4b521edb
JB
35Via the web, that's: ftp://prep.ai.mit.edu/pub/gnu/guile-1.0.tar.gz
36For getit, that's: prep.ai.mit.edu:/pub/gnu/guile-1.0.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
43
44About This Distribution ==============================================
45
46Building and installing this distribution gives you:
47guile --- a stand-alone interpreter for Guile, usually installed in
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.
51libguile.a --- an object library containing the Guile interpreter,
52 usually installed in /usr/local/lib. You can use Guile in
53 your own programs by linking against this.
54<libguile.h>, <libguile/*.h> --- header files for libguile.a, usually
55 installed in /usr/local/include.
0196b30a 56
5c54da76
JB
57
58Interesting files include:
59- INSTALL, which contains instructions on building and installing Guile.
60- NEWS, which describes user-visible changes since the last release of Guile.
61- COPYING, which describes the terms under which you may redistribute
62 Guile, and explains that there is no warranty.
63
64The Guile source tree is laid out as follows:
65
01cf3840
JB
66doc: Documentation for Guile, in Texinfo form. (At the moment, these
67 manuals are incomplete and are currently being revised.)
1325feea 68libguile:
3a629497
JB
69 The Guile Scheme interpreter --- both the object library
70 for you to link with your programs, and the executable you can run.
1325feea 71ice-9: Guile's module system, initialization code, and other infrastructure.
0682f7ab 72
3a629497
JB
73qt: A cooperative threads package from Washington University,
74 which Guile can use. If you configure Guile with the
75 --with-threads flag, you will need to link against the -lqt
76 library, found in this directory. Qt is under a separate
77 copyright; see `qt/README' for more details.
ee81f9ca 78
4c8980a2 79
3c555f81
JB
80Hacking It Yourself ==================================================
81
82As distributed, Guile needs only an ANSI C compiler and a Unix system
83to compile. However, Guile's makefiles, configuration scripts, and a
84few other files are automatically generated, not written by hand. If
85you want to make changes to the system (which we encourage!) you will
86find it helpful to have the tools we use to develop Guile. They
87are the following:
88
89Autoconf 2.12 --- a system for automatically generate `configure'
90 scripts from templates which list the non-portable features a
91 program would like to use. Available in
92 "ftp://prep.ai.mit.edu/pub/gnu".
93
4c8980a2 94Automake 1.1n --- a system for automatically generating Makefiles that
3c555f81
JB
95 conform to the (rather Byzantine) GNU coding standards. The
96 nice thing is that it takes care of hairy targets like 'make
97 dist' and 'make distclean', and automatically generates
98 Makefile dependencies. Available in
99 "ftp://ftp.cygnus.com/pub/tromey".
100
12afb619 101libtool 0.9d --- a system for managing the zillion hairy options needed
3c555f81 102 on various systems to produce shared libraries. Available in
12afb619 103 "ftp://alpha.gnu.ai.mit.edu/gnu".
3c555f81 104
05264287
JB
105You are lost in a little maze of automatically generated files, all
106different.
107>
108
3c555f81 109
9518bec3
JB
110Authors And Contributors =============================================
111
01cf3840
JB
112Many people have generously contributed to Guile. However, any errors
113are the responsibility of the primary Guile maintainer, Jim Blandy.
9518bec3
JB
114
115Mikael Djurfeldt designed and implemented:
01cf3840
JB
116* the source-level debugging support (although the debugger's user
117 interface is not yet complete)
2a786759
JB
118* stack overflow detection,
119* the GDB patches to support debugging mixed Scheme/C code,
9518bec3 120* the original implementation of weak hash tables,
2a786759
JB
121* the `threads' interface (rewriting Anthony Green's work), and
122* detection of circular references during printing.
123
3a629497 124Mark Galassi contributed the Guile high-level functions (gh_*), and
01cf3840
JB
125wrote the guile-programmer and guile-user manuals. (These are in the
126process of revision.)
127
3a629497 128Anthony Green wrote the original version of `threads', the interface
01cf3840
JB
129between Guile and qt.
130
131Gary Houston wrote the Unix system call support, including the socket
132support, and did a lot of work on the error handling code.
133
134Tom Lord librarified SCM, yielding Guile. He wrote Guile's operating
135system, Ice-9, and connected Guile to Tcl/Tk and the `rx' regular
136expression matcher.
137
138Aubrey Jaffer seriously tuned performance and added features. He
139designed many hairy but beautiful parts of the tag system and
140evaluator.
141
142George Carrette wrote SIOD, a stand-alone scheme interpreter.
143Although most of this code as been rewritten or replaced over time,
144the garbage collector from SIOD is still an important part of Guile.