1Installation Instructions
2*************************
7 The following shell commands:
9 test -f configure || ./bootstrap
14should configure, build, and install this package. The first line,
15which bootstraps, is intended for developers; when building from
16distribution tarballs it does nothing and can be skipped.
18 The following more-detailed instructions are generic; see the
19‘README’ file for instructions specific to this package. Some packages
20provide this ‘INSTALL’ file but do not implement all of the features
21documented below. The lack of an optional feature in a given package is
22not necessarily a bug. More recommendations for GNU packages can be
23found in the GNU Coding Standards.
25 Many packages have scripts meant for developers instead of ordinary
26builders, as they may use developer tools that are less commonly
27installed, or they may access the network, which has privacy
28implications. If the ‘bootstrap’ shell script exists, it attempts to
29build the ‘configure’ shell script and related files, possibly using
30developer tools or the network. Because the output of ‘bootstrap’ is
31system-independent, it is normally run by a package developer so that
32its output can be put into the distribution tarball and ordinary
33builders and users need not run ‘bootstrap’. Some packages have
34commands like ‘./autopull.sh’ and ‘./autogen.sh’ that you can run
35instead of ‘./bootstrap’, for more fine-grained control over
38 The ‘configure’ shell script attempts to guess correct values for
39various system-dependent variables used during compilation. It uses
40those values to create a ‘Makefile’ in each directory of the package.
41It may also create one or more ‘.h’ files containing system-dependent
42definitions. Finally, it creates a shell script ‘config.status’ that
43you can run in the future to recreate the current configuration, and a
44file ‘config.log’ containing output useful for debugging ‘configure’.
46 It can also use an optional file (typically called ‘config.cache’ and
47enabled with ‘--cache-file=config.cache’ or simply ‘-C’) that saves the
48results of its tests to speed up reconfiguring. Caching is disabled by
49default to prevent problems with accidental use of stale cache files.
51 If you need to do unusual things to compile the package, please try
52to figure out how ‘configure’ could check whether to do them, and mail
53diffs or instructions to the address given in the ‘README’ so they can
54be considered for the next release. If you are using the cache, and at
55some point ‘config.cache’ contains results you don’t want to keep, you
58 The ‘autoconf’ program generates ‘configure’ from the file
59‘configure.ac’. Normally you should edit ‘configure.ac’ instead of
60editing ‘configure’ directly.
62 The simplest way to compile this package is:
64 1. ‘cd’ to the directory containing the package’s source code.
66 2. If this is a developer checkout and file ‘configure’ does not yet
67 exist, type ‘./bootstrap’ to create it. You may need special
68 developer tools and network access to bootstrap, and the network
69 access may have privacy implications.
71 3. Type ‘./configure’ to configure the package for your system. This
72 might take a while. While running, ‘configure’ prints messages
73 telling which features it is checking for.
75 4. Type ‘make’ to compile the package.
77 5. Optionally, type ‘make check’ to run any self-tests that come with
78 the package, generally using the just-built uninstalled binaries.
80 6. Type ‘make install’ to install the programs and any data files and
81 documentation. When installing into a prefix owned by root, it is
82 recommended that the package be configured and built as a regular
83 user, and only the ‘make install’ phase executed with root
86 7. Optionally, type ‘make installcheck’ to repeat any self-tests, but
87 this time using the binaries in their final installed location.
88 This target does not install anything. Running this target as a
89 regular user, particularly if the prior ‘make install’ required
90 root privileges, verifies that the installation completed
93 8. You can remove the program binaries and object files from the
94 source code directory by typing ‘make clean’. To also remove the
95 files that ‘configure’ created (so you can compile the package for
96 a different kind of computer), type ‘make distclean’. There is
97 also a ‘make maintainer-clean’ target, but that is intended mainly
98 for the package’s developers. If you use it, you may have to
101 9. If the package follows the GNU Coding Standards, you can type ‘make
102 uninstall’ to remove the installed files.
107 Some systems require unusual options for compilation or linking that
108the ‘configure’ script does not know about. Run ‘./configure --help’
109for details on some of the pertinent environment variables.
111 You can give ‘configure’ initial values for configuration parameters
112by setting variables in the command line or in the environment. Here is
115 ./configure CC=gcc CFLAGS=-g LIBS=-lposix
117 See “Defining Variables” for more details.
119Compiling For Multiple Architectures
120====================================
122 You can compile the package for more than one kind of computer at the
123same time, by placing the object files for each system in their own
124directory. To do this, you can use GNU ‘make’. ‘cd’ to the directory
125where you want the object files and executables to go and run the
126‘configure’ script. ‘configure’ automatically checks for the source
127code in the directory that ‘configure’ is in and in ‘..’. This is known
130 With a non-GNU ‘make’, it is safer to compile the package for one
131system at a time in the source code directory. After you have installed
132the package for one system, use ‘make distclean’ before reconfiguring
135 Some platforms, notably macOS, support “fat” or “universal” binaries,
136where a single binary can execute on different architectures. On these
137platforms you can configure and compile just once, with options specific
143 By default, ‘make install’ installs the package’s commands under
144‘/usr/local/bin’, include files under ‘/usr/local/include’, etc. You
145can specify an installation prefix other than ‘/usr/local’ by giving
146‘configure’ the option ‘--prefix=PREFIX’, where PREFIX must be an
149 You can specify separate installation prefixes for
150architecture-specific files and architecture-independent files. If you
151pass the option ‘--exec-prefix=PREFIX’ to ‘configure’, the package uses
152PREFIX as the prefix for installing programs and libraries.
153Documentation and other data files still use the regular prefix.
155 In addition, if you use an unusual directory layout you can give
156options like ‘--bindir=DIR’ to specify different values for particular
157kinds of files. Run ‘configure --help’ for a list of the directories
158you can set and what kinds of files go in them. In general, the default
159for these options is expressed in terms of ‘${prefix}’, so that
160specifying just ‘--prefix’ will affect all of the other directory
161specifications that were not explicitly provided.
163 The most portable way to affect installation locations is to pass the
164correct locations to ‘configure’; however, many packages provide one or
165both of the following shortcuts of passing variable assignments to the
166‘make install’ command line to change installation locations without
167having to reconfigure or recompile.
169 The first method involves providing an override variable for each
170affected directory. For example, ‘make install
171prefix=/alternate/directory’ will choose an alternate location for all
172directory configuration variables that were expressed in terms of
173‘${prefix}’. Any directories that were specified during ‘configure’,
174but not in terms of ‘${prefix}’, must each be overridden at install time
175for the entire installation to be relocated. The approach of makefile
176variable overrides for each directory variable is required by the GNU
177Coding Standards, and ideally causes no recompilation. However, some
178platforms have known limitations with the semantics of shared libraries
179that end up requiring recompilation when using this method, particularly
180noticeable in packages that use GNU Libtool.
182 The second method involves providing the ‘DESTDIR’ variable. For
183example, ‘make install DESTDIR=/alternate/directory’ will prepend
184‘/alternate/directory’ before all installation names. The approach of
185‘DESTDIR’ overrides is not required by the GNU Coding Standards, and
186does not work on platforms that have drive letters. On the other hand,
187it does better at avoiding recompilation issues, and works well even
188when some directory options were not specified in terms of ‘${prefix}’
194 If the package supports it, you can cause programs to be installed
195with an extra prefix or suffix on their names by giving ‘configure’ the
196option ‘--program-prefix=PREFIX’ or ‘--program-suffix=SUFFIX’.
198 Some packages pay attention to ‘--enable-FEATURE’ and
199‘--disable-FEATURE’ options to ‘configure’, where FEATURE indicates an
200optional part of the package. They may also pay attention to
201‘--with-PACKAGE’ and ‘--without-PACKAGE’ options, where PACKAGE is
202something like ‘gnu-ld’. ‘./configure --help’ should mention the
203‘--enable-...’ and ‘--with-...’ options that the package recognizes.
205 Some packages offer the ability to configure how verbose the
206execution of ‘make’ will be. For these packages, running ‘./configure
207--enable-silent-rules’ sets the default to minimal output, which can be
208overridden with ‘make V=1’; while running ‘./configure
209--disable-silent-rules’ sets the default to verbose, which can be
210overridden with ‘make V=0’.
212Specifying a System Type
213========================
215 By default ‘configure’ builds for the current system. To create
216binaries that can run on a different system type, specify a
217‘--host=TYPE’ option along with compiler variables that specify how to
218generate object code for TYPE. For example, to create binaries intended
219to run on a 64-bit ARM processor:
221 ./configure --host=aarch64-linux-gnu \
222 CC=aarch64-linux-gnu-gcc \
223 CXX=aarch64-linux-gnu-g++
225If done on a machine that can execute these binaries (e.g., via
226‘qemu-aarch64’, ‘$QEMU_LD_PREFIX’, and Linux’s ‘binfmt_misc’
227capability), the build behaves like a native build. Otherwise it is a
228cross-build: ‘configure’ will make cross-compilation guesses instead of
229running test programs, and ‘make check’ will not work.
231 A system type can either be a short name like ‘mingw64’, or a
232canonical name like ‘x86_64-pc-linux-gnu’. Canonical names have the
233form CPU-COMPANY-SYSTEM where SYSTEM is either OS or KERNEL-OS. To
234canonicalize and validate a system type, you can run the command
235‘config.sub’, which is often squirreled away in a subdirectory like
236‘build-aux’. For example:
238 $ build-aux/config.sub arm64-linux
239 aarch64-unknown-linux-gnu
240 $ build-aux/config.sub riscv-lnx
241 Invalid configuration 'riscv-lnx': OS 'lnx' not recognized
243You can look at the ‘config.sub’ file to see which types are recognized.
244If the file is absent, this package does not need the system type.
246 If ‘configure’ fails with the diagnostic “cannot guess build type”.
247‘config.sub’ did not recognize your system’s type. In this case, first
248fetch the newest versions of these files from the GNU config package
249(https://savannah.gnu.org/projects/config). If that fixes things,
250please report it to the maintainers of the package containing
251‘configure’. Otherwise, you can try the configure option ‘--build=TYPE’
252where TYPE comes close to your system type; also, please report the
253problem to <config-patches@gnu.org>.
255 For more details about configuring system types, see the Autoconf
261 If you want to set default values for ‘configure’ scripts to share,
262you can create a site shell script called ‘config.site’ that gives
263default values for variables like ‘CC’, ‘cache_file’, and ‘prefix’.
264‘configure’ looks for ‘PREFIX/share/config.site’ if it exists, then
265‘PREFIX/etc/config.site’ if it exists. Or, you can set the
266‘CONFIG_SITE’ environment variable to the location of the site script.
267A warning: not all ‘configure’ scripts look for a site script.
272 Variables not defined in a site shell script can be set in the
273environment passed to ‘configure’. However, some packages may run
274configure again during the build, and the customized values of these
275variables may be lost. In order to avoid this problem, you should set
276them in the ‘configure’ command line, using ‘VAR=value’. For example:
278 ./configure CC=/usr/local2/bin/gcc
280causes the specified ‘gcc’ to be used as the C compiler (unless it is
281overridden in the site shell script).
283Unfortunately, this technique does not work for ‘CONFIG_SHELL’ due to an
284Autoconf limitation. Until the limitation is lifted, you can use this
287 CONFIG_SHELL=/bin/bash ./configure CONFIG_SHELL=/bin/bash
289‘configure’ Invocation
290======================
292 ‘configure’ recognizes the following options to control how it
297 Print a summary of all of the options to ‘configure’, and exit.
301 Print a summary of the options unique to this package’s
302 ‘configure’, and exit. The ‘short’ variant lists options used only
303 in the top level, while the ‘recursive’ variant lists options also
304 present in any nested packages.
308 Print the version of Autoconf used to generate the ‘configure’
312 Enable the cache: use and save the results of the tests in FILE,
313 traditionally ‘config.cache’. FILE defaults to ‘/dev/null’ to
318 Alias for ‘--cache-file=config.cache’.
321 Look for the package’s source code in directory DIR. Usually
322 ‘configure’ can determine that directory automatically.
325 Use DIR as the installation prefix. See “Installation Names” for
326 more details, including other options available for fine-tuning the
327 installation locations.
330 Build binaries for system TYPE. See “Specifying a System Type”.
334 Enable or disable the optional FEATURE. See “Optional Features”.
338 Use or omit PACKAGE when building. See “Optional Features”.
343 Do not print messages saying which checks are being made. To
344 suppress all normal output, redirect it to ‘/dev/null’ (any error
345 messages will still be shown).
349 Run the configure checks, but stop before creating any output
352‘configure’ also recognizes several environment variables, and accepts
353some other, less widely useful, options. Run ‘configure --help’ for
359 Copyright © 1994–1996, 1999–2002, 2004–2017, 2020–2024 Free Software
362 Copying and distribution of this file, with or without modification,
363are permitted in any medium without royalty provided the copyright
364notice and this notice are preserved. This file is offered as-is,
365without warranty of any kind.