1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-01 04:10:18 +02:00
Mirror of the upstream GNU Guile repository on Savannah. https://www.gnu.org/software/guile/
Find a file
Jim Blandy 2bf746cc9f * numbers.c (scm_mkbig): Add cast, and note that signed/unsigned
comparison is okay here.
* numbers.c (scm_istr2int): Add cast; len is known to be positive.
* numbers.c (scm_bigcomp): Clarify logic, and avoid relying on the
(true, but confusing) fact that -1 == ((unsigned) 0 - 1).
* numbers.c (scm_adjbig): Make nsiz an scm_sizet, to avoid mixing
signed/unsigned.
1998-09-06 18:15:59 +00:00
build *** empty log message *** 1998-07-29 18:14:42 +00:00
ice-9 *** empty log message *** 1998-08-21 08:08:52 +00:00
libguile * numbers.c (scm_mkbig): Add cast, and note that signed/unsigned 1998-09-06 18:15:59 +00:00
qt *** empty log message *** 1998-07-30 15:14:11 +00:00
.cvsignore *** empty log message *** 1997-04-24 06:40:01 +00:00
acconfig.h Remove the TOTORO kludge. We're not doing snapshots any more, so 1998-07-27 23:28:55 +00:00
acinclude.m4 *** empty log message *** 1997-11-25 02:43:01 +00:00
aclocal.m4 Regenerated 1998-08-21 03:14:24 +00:00
ANON-CVS *** empty log message *** 1998-07-29 17:01:34 +00:00
AUTHORS *** empty log message *** 1998-02-01 21:05:14 +00:00
ChangeLog *** empty log message *** 1998-09-05 16:51:17 +00:00
config.guess * Makefile.in, aclocal.m4, configure: Regenerated using the last 1998-07-29 18:13:48 +00:00
config.sub * Makefile.in, aclocal.m4, configure: Regenerated using the last 1998-07-29 18:13:48 +00:00
configure * configure.in: Remove --disable-debug option. The debugging 1998-09-05 16:48:23 +00:00
configure.in * configure.in: Remove --disable-debug option. The debugging 1998-09-05 16:48:23 +00:00
COPYING * COPYING: New address for FSF. 1997-05-26 22:36:52 +00:00
GUILE-VERSION Bump version to 1.3a, for snapshots. 1997-07-01 00:50:57 +00:00
guile.m4 * guile.m4: Revert change of Mar 15, and use the new 'no-define' 1997-04-14 03:14:18 +00:00
HACKING * HACKING: Remove -Wstrict-prototypes from the list of requested 1998-09-05 16:47:54 +00:00
INSTALL Refer to "GUILE_LOAD_PATH", instead of "SCHEME_LOAD_PATH". 1997-10-25 06:34:53 +00:00
install-sh New libtool: 1.2 1998-04-11 09:51:40 +00:00
ltconfig * Makefile.in, aclocal.m4, configure: Regenerated using the last 1998-07-29 18:13:48 +00:00
ltmain.sh * Makefile.in, aclocal.m4, configure: Regenerated using the last 1998-07-29 18:13:48 +00:00
Makefile.am Clean up thread configuration. 1998-07-27 01:00:40 +00:00
Makefile.in * Makefile.in, aclocal.m4, configure: Regenerated using the last 1998-07-29 18:13:48 +00:00
mdate-sh New libtool: 1.2 1998-04-11 09:51:40 +00:00
missing New libtool: 1.2 1998-04-11 09:51:40 +00:00
mkinstalldirs New libtool: 1.2 1998-04-11 09:51:40 +00:00
NEWS *** empty log message *** 1998-07-28 08:41:00 +00:00
NOTES *** empty log message *** 1997-03-09 15:46:09 +00:00
qthreads.m4 * configure.in, qthreads.m4: Display a message about how the 1998-07-29 17:20:17 +00:00
README Rearranged: we now provide both anonymous CVS access and nightly 1998-07-29 12:35:35 +00:00
RELEASE *** empty log message *** 1998-07-23 18:27:36 +00:00
SNAPSHOTS Rearranged: we now provide both anonymous CVS access and nightly 1998-07-29 12:35:35 +00:00
THANKS *** empty log message *** 1998-07-28 08:41:00 +00:00
TODO Undo check commit 1998-08-09 05:16:19 +00:00

This is a nightly snapshot of Guile, a portable, embeddable Scheme
implementation written in C.  Guile provides a machine independent
execution platform that can be linked in as a library when building
extensible programs.

Please send bug reports to bug-guile@gnu.org.

About This Distribution ==============================================

Building and installing this distribution gives you:
guile --- a stand-alone interpreter for Guile, usually installed in
	/usr/local/bin.  With no arguments, this is a simple
	interactive Scheme interpreter.  It can also be used as an
	interpreter for script files; see the NEWS file for details.
libguile.a --- an object library containing the Guile interpreter,
	usually installed in /usr/local/lib.  You can use Guile in
	your own programs by linking against this.
libqt.a --- an object library containing the QuickThreads primitives.
        If you enabled thread support when you configured Guile, you
        will need to link your code against this too.
<libguile.h>, <libguile/*.h> --- header files for libguile.a, usually
	installed in /usr/local/include.
ice-9, ice-9/*.scm --- run-time support for Guile: the module
	system, read-eval-print loop, some R4RS code and other
	infrastructure.  Usually installed in
	/usr/local/share/guile/<version>.

Interesting files include:
- INSTALL, which contains instructions on building and installing Guile.
- NEWS, which describes user-visible changes since the last release of Guile.
- COPYING, which describes the terms under which you may redistribute
  Guile, and explains that there is no warranty.

The Guile source tree is laid out as follows:

libguile:
	The Guile Scheme interpreter --- both the object library
	for you to link with your programs, and the executable you can run.
ice-9:  Guile's module system, initialization code, and other infrastructure.

qt: 	A cooperative threads package from Washington University,
	which Guile can use.  If you configure Guile with the
        --with-threads flag, you will need to link against the -lqt
        library, found in this directory.  Qt is under a separate
        copyright; see `qt/README' for more details.

(The present release doesn't include any documentation; the Guile
manual is incomplete, and is currently being revised.)


Anonymous CVS Access and FTP snapshots ===============================

We make the developers' working Guile sources available via anonymous
CVS, and by nightly snapshots, accessible via FTP.  See the files
`ANON-CVS' and `SNAPSHOTS' for details.


Hacking It Yourself ==================================================

As distributed, Guile needs only an ANSI C compiler and a Unix system
to compile.  However, Guile's makefiles, configuration scripts, and a
few other files are automatically generated, not written by hand.  If
you want to make changes to the system (which we encourage!) you will
find it helpful to have the tools we use to develop Guile.  They
are the following:

Autoconf 2.12 --- a system for automatically generating `configure'
	scripts from templates which list the non-portable features a
	program would like to use.  Available in
	"ftp://prep.ai.mit.edu/pub/gnu".

Automake 1.3 --- a system for automatically generating Makefiles that
	conform to the (rather Byzantine) GNU coding standards.  The
	nice thing is that it takes care of hairy targets like 'make
	dist' and 'make distclean', and automatically generates
	Makefile dependencies.  Automake is available in
	"ftp://prep.ai.mit.edu/pub/gnu".

	Before using automake, you may need to copy `threads.m4' and
	`guile.m4' from the top directory of the Guile core disty to
	`/usr/local/share/aclocal.

libtool 1.2 --- a system for managing the zillion hairy options needed
	on various systems to produce shared libraries.  Available in
	"ftp://prep.ai.mit.edu/pub/gnu".

You are lost in a little maze of automatically generated files, all
different.
> 


Obtaining Guile ======================================================

The latest official Guile release is available via anonymous FTP from
prep.ai.mit.edu, as /pub/gnu/guile-1.2.tar.gz.

Via the web, that's:  ftp://prep.ai.mit.edu/pub/gnu/guile-1.2.tar.gz
For getit, that's:    prep.ai.mit.edu:/pub/gnu/guile-1.2.tar.gz

The mailing list `guile@cygnus.com' carries discussions, questions,
and often answers, about Guile.  To subscribe, send mail to
guile-request@cygnus.com.  Of course, please send bug reports (and
fixes!) to bug-guile@gnu.org.


Authors And Contributors =============================================

Many people have generously contributed to Guile.  However, any errors
are the responsibility of the primary Guile maintainer, Jim Blandy.

Mikael Djurfeldt designed and implemented:
* the source-level debugging support (although the debugger's user
  interface is not yet complete)
* stack overflow detection,
* the GDB patches to support debugging mixed Scheme/C code,
* the original implementation of weak hash tables,
* enhancements to the `threads' interface (based on Anthony Green's
  work), and
* detection of circular references during printing.

Mark Galassi contributed the Guile high-level functions (gh_*), and
wrote the guile-programmer and guile-user manuals.  (These are in the
process of revision.)

Anthony Green wrote the original version of `threads', the interface
between Guile and qt.

Gary Houston wrote much of the Unix system call support, including the
socket support, and did a lot of work on the error handling code.

Tom Lord librarified SCM, yielding Guile.  He wrote Guile's operating
system, Ice-9, and connected Guile to Tcl/Tk and the `rx' regular
expression matcher.

Aubrey Jaffer is the author of SCM upon which Guile is based.  Guile
started from SCM version 4e1 in November -94 and is still largely
composed of the original SCM code.

George Carrette wrote SIOD, a stand-alone scheme interpreter.
Although most of this code as been rewritten or replaced over time,
the garbage collector from SIOD is still an important part of Guile.