* boot-9.scm (struct-printer): Bugfix: Check the layout of the
[bpt/guile.git] / INSTALL
CommitLineData
6dad9cd3
JB
1Brief Installation Instructions ===========================================
2
30d14d55 3To build Guile on unix, there are two basic steps:
0196b30a 4
6dad9cd3
JB
5 1. Type "./configure", to configure the package for your system.
6 2. Type "make", to build the package.
0196b30a
JB
7
8Generic instructions for configuring and compiling GNU distributions
6dad9cd3
JB
9are included below. For Guile, you might type the commands below.
10Their voluminous output is not shown.
11
12 $ tar xvfz guile-970416.tar.gz # unpack the sources
13 $ cd guile-970416
14 $ ./configure # adapt Guile to your system
15 $ make # compile Guile
16 $ make install # install in the usual places
0196b30a 17
3bd0adbc
JB
18(Note: under SunOS 4.1, you may need to say ./configure --disable-shared;
19Guile's shared library support for that systems seems to be confused.)
6dad9cd3
JB
20
21What You Get ==============================================================
30d14d55
JB
22
23The `configure' script examines your system, and adapts Guile to
24compile and run on it.
25
26The `make' command builds several things:
27- An executable file `guile/guile', which is an interactive shell for
28 talking with the Guile Scheme interpreter.
6dad9cd3 29- An object library `libguile/.libs/libguile.a', containing the Guile Scheme
30d14d55 30 interpreter, ready to be linked into your programs.
30d14d55
JB
31
32To install Guile, type `make install'. This installs the executable
33and libraries mentioned above, as well as Guile's header files and
34Scheme libraries.
35
6dad9cd3
JB
36Make also builds shared libraries, on systems that support them.
37Because of the nature of shared libraries, before linking against
38them, you should probably install them; `make install' takes care of
39this.
40
41
42Flags Accepted by Configure ===============================================
43
44If you run the configure script with no arguments, it should examine
45your system and set things up appropriately. However, there are a few
46switches specific to Guile you may find useful in some circumstances.
47
48--enable-maintainer-mode --- If you have automake, autoconf, and
49libtool installed on your system, this switch causes configure to
50generate Makefiles which know how to automatically regenerate
51configure scripts, makefiles, and headers, when they are out of date.
52The README file says which versions of those tools you will need.
53
54--with-threads --- Build a Guile executable and library that supports
55cooperative threading. If you use this switch, Guile will also build
56and install the QuickThreads non-preemptive threading library,
57libqt.a, which you will need to link into your programs after
58libguile.a. That is, you should pass the switches -lguile -qt to your
873b9044
JB
59linker.
60
61Coop threads are not yet thoroughly tested; once they are, they will
62be enabled by default. The interaction with blocking I/O is pretty ad
63hoc at the moment. In our experience, bugs in the thread support do
64not affect you if you don't actually use threads.
6dad9cd3 65
c30f75e8
JB
66--enable-dynamic-linking --- Build a Guile executable and library
67providing Scheme functions which can load a shared library and
68initialize it, perhaps thereby adding new functions to Guile. This
69feature is not yet thoroughly tested; once it is, it will be enabled
70by default. This option has no effect on systems that do not support
71shared libraries.
6dad9cd3
JB
72
73--disable-shared --- Do not build shared libraries. Normally, Guile
74will build shared libraries if your system supports them. Guile
75always builds static libraries.
76
77
78Using Guile Without Installing It =========================================
79
30d14d55
JB
80If you want to run Guile without installing it, set the environment
81variable `SCHEME_LOAD_PATH' to a colon-separated list of directories,
82including the directory containing this INSTALL file. For example, if
83you unpacked Guile so that the full filename of this file is
cd2e9eb5 84`/home/jimb/guile-snap/INSTALL', then you might say
30d14d55 85
cd2e9eb5 86 export SCHEME_LOAD_PATH=/home/jimb/my-scheme:/home/jimb/guile-snap
0196b30a 87
30d14d55 88if you're using Bash or any other Bourne shell variant, or
0196b30a 89
cd2e9eb5 90 setenv SCHEME_LOAD_PATH /home/jimb/my-scheme:/home/jimb/guile-snap
0196b30a 91
30d14d55 92if you're using CSH or one of its variants.
0196b30a
JB
93
94
6dad9cd3 95Generic Instructions for Building Auto-Configured Packages ================
0196b30a
JB
96
97To compile this package:
98
991. Configure the package for your system. In the directory that this
100file is in, type `./configure'. If you're using `csh' on an old
101version of System V, you might need to type `sh configure' instead to
102prevent `csh' from trying to execute `configure' itself.
103
104The `configure' shell script attempts to guess correct values for
105various system-dependent variables used during compilation, and
106creates the Makefile(s) (one in each subdirectory of the source
107directory). In some packages it creates a C header file containing
108system-dependent definitions. It also creates a file `config.status'
109that you can run in the future to recreate the current configuration.
110Running `configure' takes a minute or two.
111
112To compile the package in a different directory from the one
113containing the source code, you must use GNU make. `cd' to the
114directory where you want the object files and executables to go and
115run `configure' with the option `--srcdir=DIR', where DIR is the
116directory that contains the source code. Using this option is
117actually unnecessary if the source code is in the parent directory of
118the one in which you are compiling; `configure' automatically checks
119for the source code in `..' if it does not find it in the current
120directory.
121
122By default, `make install' will install the package's files in
123/usr/local/bin, /usr/local/lib, /usr/local/man, etc. You can specify
124an installation prefix other than /usr/local by giving `configure' the
125option `--prefix=PATH'. Alternately, you can do so by changing the
126`prefix' variable in the Makefile that `configure' creates (the
127Makefile in the top-level directory, if the package contains
128subdirectories).
129
130You can specify separate installation prefixes for machine-specific
131files and machine-independent files. If you give `configure' the
132option `--exec_prefix=PATH', the package will use PATH as the prefix
133for installing programs and libraries. Normally, all files are
134installed using the same prefix.
135
136`configure' ignores any other arguments that you give it.
137
138If your system requires unusual options for compilation or linking
139that `configure' doesn't know about, you can give `configure' initial
140values for some variables by setting them in the environment. In
141Bourne-compatible shells, you can do that on the command line like
142this:
143 CC='gcc -traditional' DEFS=-D_POSIX_SOURCE ./configure
144
145The `make' variables that you might want to override with environment
146variables when running `configure' are:
147
148(For these variables, any value given in the environment overrides the
149value that `configure' would choose:)
150CC C compiler program.
151 Default is `cc', or `gcc' if `gcc' is in your PATH.
152INSTALL Program to use to install files.
153 Default is `install' if you have it, `cp' otherwise.
154INCLUDEDIR Directory for `configure' to search for include files.
155 Default is /usr/include.
156
157(For these variables, any value given in the environment is added to
158the value that `configure' chooses:)
159DEFS Configuration options, in the form '-Dfoo -Dbar ...'
160LIBS Libraries to link with, in the form '-lfoo -lbar ...'
161
162If you need to do unusual things to compile the package, we encourage
163you to teach `configure' how to do them and mail the diffs to the
164address given in the README so we can include them in the next
165release.
166
1672. Type `make' to compile the package.
168
1693. Type `make install' to install programs, data files, and
170documentation.
171
1724. You can remove the program binaries and object files from the
173source directory by typing `make clean'. To also remove the
174Makefile(s), the header file containing system-dependent definitions
175(if the package uses one), and `config.status' (all the files that
176`configure' created), type `make distclean'.
177
178The file `configure.in' is used as a template to create `configure' by
179a program called `autoconf'. You will only need it if you want to
180regenerate `configure' using a newer version of `autoconf'.