*** empty log message ***
[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
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
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
102 Makefile dependencies. Available in
103 "ftp://ftp.cygnus.com/pub/tromey".
3c555f81 104
12afb619 105libtool 0.9d --- a system for managing the zillion hairy options needed
cf78e9e8
JB
106 on various systems to produce shared libraries. Available in
107 "ftp://alpha.gnu.ai.mit.edu/gnu".
3c555f81 108
05264287
JB
109You are lost in a little maze of automatically generated files, all
110different.
cf78e9e8 111>
05264287 112
3c555f81 113
9518bec3
JB
114Authors And Contributors =============================================
115
01cf3840
JB
116Many people have generously contributed to Guile. However, any errors
117are the responsibility of the primary Guile maintainer, Jim Blandy.
9518bec3
JB
118
119Mikael Djurfeldt designed and implemented:
01cf3840
JB
120* the source-level debugging support (although the debugger's user
121 interface is not yet complete)
2a786759
JB
122* stack overflow detection,
123* the GDB patches to support debugging mixed Scheme/C code,
9518bec3 124* the original implementation of weak hash tables,
2a786759
JB
125* the `threads' interface (rewriting Anthony Green's work), and
126* detection of circular references during printing.
127
3a629497 128Mark Galassi contributed the Guile high-level functions (gh_*), and
01cf3840
JB
129wrote the guile-programmer and guile-user manuals. (These are in the
130process of revision.)
131
3a629497 132Anthony Green wrote the original version of `threads', the interface
01cf3840
JB
133between Guile and qt.
134
135Gary Houston wrote the Unix system call support, including the socket
136support, and did a lot of work on the error handling code.
137
138Tom Lord librarified SCM, yielding Guile. He wrote Guile's operating
139system, Ice-9, and connected Guile to Tcl/Tk and the `rx' regular
140expression matcher.
141
142Aubrey Jaffer seriously tuned performance and added features. He
143designed many hairy but beautiful parts of the tag system and
144evaluator.
145
146George Carrette wrote SIOD, a stand-alone scheme interpreter.
147Although most of this code as been rewritten or replaced over time,
148the garbage collector from SIOD is still an important part of Guile.