*** empty log message ***
[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
9f75bc05 9are included below.
6dad9cd3 10
0196b30a 11
9f75bc05
JB
12Special Instructions For Some Systems =====================================
13
14We would like Guile to build on all systems using the simple
15instructions above, but it seems that a few systems still need special
16treatment. If you can send us fixes for these problems, we'd be
17grateful.
18
19SunOS 4.1: Guile's shared library support seems to be confused, but
20 hey; shared libraries are confusing. You may need to configure
21 Guile with a command like:
7e2c0c8d 22 ./configure --disable-shared
9f75bc05
JB
23 For more information on `--disable-shared', see below, "Flags
24 Accepted by Configure".
25
26HP/UX: GCC 2.7.2 (and maybe other versions) have trouble creating
27 shared libraries if they depend on any non-shared libraries. GCC
28 seems to have other problems as well. To work around this, we
29 suggest you configure Guile to use the system's C compiler:
30 CC=cc ./configure
31
6dad9cd3
JB
32
33What You Get ==============================================================
30d14d55
JB
34
35The `configure' script examines your system, and adapts Guile to
36compile and run on it.
37
38The `make' command builds several things:
39- An executable file `guile/guile', which is an interactive shell for
40 talking with the Guile Scheme interpreter.
6dad9cd3 41- An object library `libguile/.libs/libguile.a', containing the Guile Scheme
30d14d55 42 interpreter, ready to be linked into your programs.
30d14d55
JB
43
44To install Guile, type `make install'. This installs the executable
45and libraries mentioned above, as well as Guile's header files and
46Scheme libraries.
47
6dad9cd3
JB
48Make also builds shared libraries, on systems that support them.
49Because of the nature of shared libraries, before linking against
50them, you should probably install them; `make install' takes care of
51this.
52
53
54Flags Accepted by Configure ===============================================
55
56If you run the configure script with no arguments, it should examine
57your system and set things up appropriately. However, there are a few
58switches specific to Guile you may find useful in some circumstances.
59
60--enable-maintainer-mode --- If you have automake, autoconf, and
61libtool installed on your system, this switch causes configure to
62generate Makefiles which know how to automatically regenerate
63configure scripts, makefiles, and headers, when they are out of date.
64The README file says which versions of those tools you will need.
65
66--with-threads --- Build a Guile executable and library that supports
67cooperative threading. If you use this switch, Guile will also build
68and install the QuickThreads non-preemptive threading library,
69libqt.a, which you will need to link into your programs after
70libguile.a. That is, you should pass the switches -lguile -qt to your
873b9044
JB
71linker.
72
73Coop threads are not yet thoroughly tested; once they are, they will
74be enabled by default. The interaction with blocking I/O is pretty ad
75hoc at the moment. In our experience, bugs in the thread support do
76not affect you if you don't actually use threads.
6dad9cd3 77
16b28a02
JB
78At the moment, threads are known not to work with the NetBSD 1.2
79assembler.
80
c30f75e8
JB
81--enable-dynamic-linking --- Build a Guile executable and library
82providing Scheme functions which can load a shared library and
83initialize it, perhaps thereby adding new functions to Guile. This
84feature is not yet thoroughly tested; once it is, it will be enabled
85by default. This option has no effect on systems that do not support
86shared libraries.
6dad9cd3
JB
87
88--disable-shared --- Do not build shared libraries. Normally, Guile
89will build shared libraries if your system supports them. Guile
90always builds static libraries.
91
92
93Using Guile Without Installing It =========================================
94
30d14d55 95If you want to run Guile without installing it, set the environment
cf591c72 96variable `GUILE_LOAD_PATH' to a colon-separated list of directories,
bacf83f0
JB
97including the directory containing this INSTALL file. If you used a
98separate build directory, you'll need to include the build directory
99in the path as well.
30d14d55 100
bacf83f0
JB
101For example, suppose the Guile distribution unpacked into a directory
102called `/home/jimb/guile-snap' (so the full name of this file would be
103`/home/jimb/guile-snap/INSTALL'). Then you might say:
104
cf591c72 105 export GUILE_LOAD_PATH=/home/jimb/guile-snap
0196b30a 106
30d14d55 107if you're using Bash or any other Bourne shell variant, or
0196b30a 108
cf591c72 109 setenv GUILE_LOAD_PATH /home/jimb/guile-snap
0196b30a 110
30d14d55 111if you're using CSH or one of its variants.
0196b30a 112
bacf83f0 113If you built Guile in a separate directory from the source tree, then
cf591c72 114you'll need to include your build directory in the GUILE_LOAD_PATH as
bacf83f0
JB
115well. For example, if you built in a subdirectory of the source tree
116called `pentium', you might say:
117
cf591c72 118 export GUILE_LOAD_PATH=/home/jimb/guile-snap:/home/jimb/guile-snap/pentium
bacf83f0 119
0196b30a 120
f335e5f7
JB
121Building a Statically Linked Guile ========================================
122
123Sometimes it's useful to build a statically-linked version of the
124Guile executable. It's helpful in debugging, and for producing
125stand-alone executables for distribution to machines you don't
126control.
127
128To do this, set the LDFLAGS environment variable to `-static' before
129you configure, or before you run the `make' command to build the
130executable.
131
132
6dad9cd3 133Generic Instructions for Building Auto-Configured Packages ================
0196b30a
JB
134
135To compile this package:
136
1371. Configure the package for your system. In the directory that this
138file is in, type `./configure'. If you're using `csh' on an old
139version of System V, you might need to type `sh configure' instead to
140prevent `csh' from trying to execute `configure' itself.
141
142The `configure' shell script attempts to guess correct values for
143various system-dependent variables used during compilation, and
144creates the Makefile(s) (one in each subdirectory of the source
145directory). In some packages it creates a C header file containing
146system-dependent definitions. It also creates a file `config.status'
147that you can run in the future to recreate the current configuration.
148Running `configure' takes a minute or two.
149
150To compile the package in a different directory from the one
151containing the source code, you must use GNU make. `cd' to the
152directory where you want the object files and executables to go and
153run `configure' with the option `--srcdir=DIR', where DIR is the
154directory that contains the source code. Using this option is
155actually unnecessary if the source code is in the parent directory of
156the one in which you are compiling; `configure' automatically checks
157for the source code in `..' if it does not find it in the current
158directory.
159
160By default, `make install' will install the package's files in
161/usr/local/bin, /usr/local/lib, /usr/local/man, etc. You can specify
162an installation prefix other than /usr/local by giving `configure' the
163option `--prefix=PATH'. Alternately, you can do so by changing the
164`prefix' variable in the Makefile that `configure' creates (the
165Makefile in the top-level directory, if the package contains
166subdirectories).
167
168You can specify separate installation prefixes for machine-specific
169files and machine-independent files. If you give `configure' the
170option `--exec_prefix=PATH', the package will use PATH as the prefix
171for installing programs and libraries. Normally, all files are
172installed using the same prefix.
173
174`configure' ignores any other arguments that you give it.
175
176If your system requires unusual options for compilation or linking
177that `configure' doesn't know about, you can give `configure' initial
178values for some variables by setting them in the environment. In
179Bourne-compatible shells, you can do that on the command line like
180this:
181 CC='gcc -traditional' DEFS=-D_POSIX_SOURCE ./configure
182
183The `make' variables that you might want to override with environment
184variables when running `configure' are:
185
186(For these variables, any value given in the environment overrides the
187value that `configure' would choose:)
188CC C compiler program.
189 Default is `cc', or `gcc' if `gcc' is in your PATH.
190INSTALL Program to use to install files.
191 Default is `install' if you have it, `cp' otherwise.
192INCLUDEDIR Directory for `configure' to search for include files.
193 Default is /usr/include.
194
195(For these variables, any value given in the environment is added to
196the value that `configure' chooses:)
197DEFS Configuration options, in the form '-Dfoo -Dbar ...'
198LIBS Libraries to link with, in the form '-lfoo -lbar ...'
199
200If you need to do unusual things to compile the package, we encourage
201you to teach `configure' how to do them and mail the diffs to the
202address given in the README so we can include them in the next
203release.
204
2052. Type `make' to compile the package.
206
2073. Type `make install' to install programs, data files, and
208documentation.
209
2104. You can remove the program binaries and object files from the
211source directory by typing `make clean'. To also remove the
212Makefile(s), the header file containing system-dependent definitions
213(if the package uses one), and `config.status' (all the files that
214`configure' created), type `make distclean'.
215
216The file `configure.in' is used as a template to create `configure' by
217a program called `autoconf'. You will only need it if you want to
218regenerate `configure' using a newer version of `autoconf'.