*** empty log message ***
[bpt/guile.git] / INSTALL
CommitLineData
afdd97ae
MV
1Guile Installation Guide
2Copyright (c) 1996, 1997, 1998, 1999, 2000 Free software Foundation, Inc.
3
4 Permission is granted to anyone to make or distribute verbatim copies
5 of this document as received, in any medium, provided that the
6 copyright notice and permission notice are preserved,
7 and that the distributor grants the recipient permission
8 for further redistribution as permitted by this notice.
9
10 Permission is granted to distribute modified versions
11 of this document, or of portions of it,
12 under the above conditions, provided also that they
13 carry prominent notices stating who last changed them,
14 and that any new or changed statements about the activities
15 of the Free Software Foundation are approved by the Foundation.
16
17
6dad9cd3
JB
18Brief Installation Instructions ===========================================
19
30d14d55 20To build Guile on unix, there are two basic steps:
0196b30a 21
6dad9cd3
JB
22 1. Type "./configure", to configure the package for your system.
23 2. Type "make", to build the package.
0196b30a
JB
24
25Generic instructions for configuring and compiling GNU distributions
fde0a324
MD
26are included below. (For instructions how to install SLIB, the scheme
27procedure library, see below.)
6dad9cd3 28
0196b30a 29
9f75bc05
JB
30Special Instructions For Some Systems =====================================
31
32We would like Guile to build on all systems using the simple
33instructions above, but it seems that a few systems still need special
34treatment. If you can send us fixes for these problems, we'd be
35grateful.
36
37SunOS 4.1: Guile's shared library support seems to be confused, but
38 hey; shared libraries are confusing. You may need to configure
39 Guile with a command like:
7e2c0c8d 40 ./configure --disable-shared
9f75bc05
JB
41 For more information on `--disable-shared', see below, "Flags
42 Accepted by Configure".
43
44HP/UX: GCC 2.7.2 (and maybe other versions) have trouble creating
45 shared libraries if they depend on any non-shared libraries. GCC
46 seems to have other problems as well. To work around this, we
47 suggest you configure Guile to use the system's C compiler:
48 CC=cc ./configure
49
bd0a8b65
JB
50NetBSD: Perry Metzger says, "Guile will build under NetBSD only using
51 gmake -- the native make will not work. (gmake is in our package
52 system, so this will not be a problem when we packagize 1.3.)"
6dad9cd3 53
fde0a324 54
6dad9cd3
JB
55Flags Accepted by Configure ===============================================
56
57If you run the configure script with no arguments, it should examine
58your system and set things up appropriately. However, there are a few
59switches specific to Guile you may find useful in some circumstances.
60
61--enable-maintainer-mode --- If you have automake, autoconf, and
62libtool installed on your system, this switch causes configure to
63generate Makefiles which know how to automatically regenerate
64configure scripts, makefiles, and headers, when they are out of date.
65The README file says which versions of those tools you will need.
66
67--with-threads --- Build a Guile executable and library that supports
68cooperative threading. If you use this switch, Guile will also build
69and install the QuickThreads non-preemptive threading library,
6d2bd56d
MV
70libqthreads, which you will need to link into your programs after
71libguile. When you use `guile-config', you will pick up all
72neccessary linker flags automatically.
873b9044 73
18f468f8
JB
74Cooperative threads are not yet thoroughly tested; once they are, they
75will be enabled by default. The interaction with blocking I/O is
76pretty ad hoc at the moment. In our experience, bugs in the thread
77support do not affect you if you don't actually use threads.
6dad9cd3 78
6d2bd56d
MV
79--with-modules --- Guile can dynamically load `plugin modules' during
80runtime, using facilities provided by libtool. Not all platforms
81support this, however. On these platforms, you can statically link
82the plugin modules into libguile when Guile itself is build. XXX -
83how does one specify the modules?
6dad9cd3
JB
84
85--disable-shared --- Do not build shared libraries. Normally, Guile
86will build shared libraries if your system supports them. Guile
87always builds static libraries.
88
69fc343a
MD
89--enable-debug-freelist --- Enable freelist debugging.
90
91This enables a debugging version of SCM_NEWCELL(), and also registers
92an extra primitive, the setter `gc-set-debug-check-freelist!'.
93
94Configure with the --enable-debug-freelist option to enable
95the gc-set-debug-check-freelist! primitive, and then use:
96
97(gc-set-debug-check-freelist! #t) # turn on checking of the freelist
98(gc-set-debug-check-freelist! #f) # turn off checking
99
100Checking of the freelist forces a traversal of the freelist and
101a garbage collection before each allocation of a cell. This can
102slow down the interpreter dramatically, so the setter should be used to
103turn on this extra processing only when necessary.
104
105--enable-debug-malloc --- Enable malloc debugging.
106
107Include code for debugging of calls to scm_must_malloc/realloc/free.
108
109Checks that
110
1111. objects freed by scm_must_free has been mallocated by scm_must_malloc
1122. objects reallocated by scm_must_realloc has been allocated by
113 scm_must_malloc
1143. reallocated objects are reallocated with the same what string
115
116But, most importantly, it records the number of allocated objects of
117each kind. This is useful when searching for memory leaks.
118
119A Guile compiled with this option provides the primitive
120`malloc-stats' which returns an alist with pairs of kind and the
121number of objects of that kind.
122
ee2bf8b8 123--enable-guile-debug --- Include internal debugging functions
69fc343a
MD
124--disable-arrays --- omit array and uniform array support
125--disable-posix --- omit posix interfaces
126--disable-networking --- omit networking interfaces
127--disable-regex --- omit regular expression interfaces
6dad9cd3 128
fde0a324 129
6dad9cd3
JB
130Using Guile Without Installing It =========================================
131
30d14d55 132If you want to run Guile without installing it, set the environment
cf591c72 133variable `GUILE_LOAD_PATH' to a colon-separated list of directories,
bacf83f0
JB
134including the directory containing this INSTALL file. If you used a
135separate build directory, you'll need to include the build directory
136in the path as well.
30d14d55 137
bacf83f0 138For example, suppose the Guile distribution unpacked into a directory
18f468f8
JB
139called `/home/jimb/guile-snap' (so the full name of this INSTALL file
140would be `/home/jimb/guile-snap/INSTALL'). Then you might say, if
141you're using Bash or any other Bourne shell variant,
bacf83f0 142
cf591c72 143 export GUILE_LOAD_PATH=/home/jimb/guile-snap
0196b30a 144
18f468f8 145or if you're using CSH or one of its variants:
0196b30a 146
cf591c72 147 setenv GUILE_LOAD_PATH /home/jimb/guile-snap
0196b30a 148
0196b30a 149
fde0a324
MD
150Installing SLIB ===========================================================
151
152In order to use SLIB from Guile you basically only need to put the
153`slib' directory _in_ one of the directories on Guile's load path.
154
155The standard installation is:
156
157 1. Obtain slib from http://www-swiss.ai.mit.edu/~jaffer/SLIB.html
158
159 2. Put it in Guile's data directory, that is the directory printed when
160 you type
161
162 guile-config info pkgdatadir
163
164 at the shell prompt. This is normally `/usr/local/share/guile', so the
165 directory will normally have full path `/usr/local/share/guile/slib'.
166
167 3. Start guile as a user with write access to the data directory and type
168
169 (use-modules (ice-9 slib))
170
171 at the Guile prompt. This will generate the slibcat catalog next to
172 the slib directory.
173
174SLIB's `require' is provided by the Guile module (ice-9 slib).
175
176Example:
177
178 (use-modules (ice-9 slib))
179 (require 'primes)
180 (prime? 7)
181
182
6dad9cd3 183Generic Instructions for Building Auto-Configured Packages ================
0196b30a
JB
184
185To compile this package:
186
1871. Configure the package for your system. In the directory that this
188file is in, type `./configure'. If you're using `csh' on an old
189version of System V, you might need to type `sh configure' instead to
190prevent `csh' from trying to execute `configure' itself.
191
192The `configure' shell script attempts to guess correct values for
193various system-dependent variables used during compilation, and
194creates the Makefile(s) (one in each subdirectory of the source
195directory). In some packages it creates a C header file containing
196system-dependent definitions. It also creates a file `config.status'
197that you can run in the future to recreate the current configuration.
198Running `configure' takes a minute or two.
199
200To compile the package in a different directory from the one
201containing the source code, you must use GNU make. `cd' to the
202directory where you want the object files and executables to go and
203run `configure' with the option `--srcdir=DIR', where DIR is the
204directory that contains the source code. Using this option is
205actually unnecessary if the source code is in the parent directory of
206the one in which you are compiling; `configure' automatically checks
207for the source code in `..' if it does not find it in the current
208directory.
209
210By default, `make install' will install the package's files in
211/usr/local/bin, /usr/local/lib, /usr/local/man, etc. You can specify
212an installation prefix other than /usr/local by giving `configure' the
213option `--prefix=PATH'. Alternately, you can do so by changing the
214`prefix' variable in the Makefile that `configure' creates (the
215Makefile in the top-level directory, if the package contains
216subdirectories).
217
218You can specify separate installation prefixes for machine-specific
219files and machine-independent files. If you give `configure' the
220option `--exec_prefix=PATH', the package will use PATH as the prefix
221for installing programs and libraries. Normally, all files are
222installed using the same prefix.
223
224`configure' ignores any other arguments that you give it.
225
226If your system requires unusual options for compilation or linking
227that `configure' doesn't know about, you can give `configure' initial
228values for some variables by setting them in the environment. In
229Bourne-compatible shells, you can do that on the command line like
230this:
231 CC='gcc -traditional' DEFS=-D_POSIX_SOURCE ./configure
232
233The `make' variables that you might want to override with environment
234variables when running `configure' are:
235
236(For these variables, any value given in the environment overrides the
237value that `configure' would choose:)
238CC C compiler program.
239 Default is `cc', or `gcc' if `gcc' is in your PATH.
240INSTALL Program to use to install files.
241 Default is `install' if you have it, `cp' otherwise.
242INCLUDEDIR Directory for `configure' to search for include files.
243 Default is /usr/include.
244
245(For these variables, any value given in the environment is added to
246the value that `configure' chooses:)
247DEFS Configuration options, in the form '-Dfoo -Dbar ...'
248LIBS Libraries to link with, in the form '-lfoo -lbar ...'
249
250If you need to do unusual things to compile the package, we encourage
251you to teach `configure' how to do them and mail the diffs to the
252address given in the README so we can include them in the next
253release.
254
2552. Type `make' to compile the package.
256
2573. Type `make install' to install programs, data files, and
258documentation.
259
2604. You can remove the program binaries and object files from the
261source directory by typing `make clean'. To also remove the
262Makefile(s), the header file containing system-dependent definitions
263(if the package uses one), and `config.status' (all the files that
264`configure' created), type `make distclean'.
265
266The file `configure.in' is used as a template to create `configure' by
267a program called `autoconf'. You will only need it if you want to
268regenerate `configure' using a newer version of `autoconf'.
afdd97ae 269