[2162] | 1 | Copyright 1994, 1995, 1996, 1999, 2000, 2001, 2002 Free Software
|
---|
| 2 | Foundation, Inc.
|
---|
| 3 |
|
---|
| 4 | This file is free documentation; the Free Software Foundation gives
|
---|
| 5 | unlimited permission to copy, distribute and modify it.
|
---|
| 6 |
|
---|
| 7 |
|
---|
| 8 | Non-generic Instructions
|
---|
| 9 | ========================
|
---|
| 10 |
|
---|
| 11 | You can specify in what namespace the google hashtable routines
|
---|
| 12 | (sparse_hash_map et al.) will be defined. The default is to define
|
---|
| 13 | them in std. To define them in another namespace, run with
|
---|
| 14 |
|
---|
| 15 | --enable-namespace=another_namespace
|
---|
| 16 |
|
---|
| 17 | To define the hashtable routines in the main namespace (that is, in no
|
---|
| 18 | namespace at all), run with
|
---|
| 19 |
|
---|
| 20 | --disable-namespace
|
---|
| 21 |
|
---|
| 22 |
|
---|
| 23 | Basic Installation
|
---|
| 24 | ==================
|
---|
| 25 |
|
---|
| 26 | These are generic installation instructions.
|
---|
| 27 |
|
---|
| 28 | The `configure' shell script attempts to guess correct values for
|
---|
| 29 | various system-dependent variables used during compilation. It uses
|
---|
| 30 | those values to create a `Makefile' in each directory of the package.
|
---|
| 31 | It may also create one or more `.h' files containing system-dependent
|
---|
| 32 | definitions. Finally, it creates a shell script `config.status' that
|
---|
| 33 | you can run in the future to recreate the current configuration, and a
|
---|
| 34 | file `config.log' containing compiler output (useful mainly for
|
---|
| 35 | debugging `configure').
|
---|
| 36 |
|
---|
| 37 | It can also use an optional file (typically called `config.cache'
|
---|
| 38 | and enabled with `--cache-file=config.cache' or simply `-C') that saves
|
---|
| 39 | the results of its tests to speed up reconfiguring. (Caching is
|
---|
| 40 | disabled by default to prevent problems with accidental use of stale
|
---|
| 41 | cache files.)
|
---|
| 42 |
|
---|
| 43 | If you need to do unusual things to compile the package, please try
|
---|
| 44 | to figure out how `configure' could check whether to do them, and mail
|
---|
| 45 | diffs or instructions to the address given in the `README' so they can
|
---|
| 46 | be considered for the next release. If you are using the cache, and at
|
---|
| 47 | some point `config.cache' contains results you don't want to keep, you
|
---|
| 48 | may remove or edit it.
|
---|
| 49 |
|
---|
| 50 | The file `configure.ac' (or `configure.in') is used to create
|
---|
| 51 | `configure' by a program called `autoconf'. You only need
|
---|
| 52 | `configure.ac' if you want to change it or regenerate `configure' using
|
---|
| 53 | a newer version of `autoconf'.
|
---|
| 54 |
|
---|
| 55 | The simplest way to compile this package is:
|
---|
| 56 |
|
---|
| 57 | 1. `cd' to the directory containing the package's source code and type
|
---|
| 58 | `./configure' to configure the package for your system. If you're
|
---|
| 59 | using `csh' on an old version of System V, you might need to type
|
---|
| 60 | `sh ./configure' instead to prevent `csh' from trying to execute
|
---|
| 61 | `configure' itself.
|
---|
| 62 |
|
---|
| 63 | Running `configure' takes awhile. While running, it prints some
|
---|
| 64 | messages telling which features it is checking for.
|
---|
| 65 |
|
---|
| 66 | 2. Type `make' to compile the package.
|
---|
| 67 |
|
---|
| 68 | 3. Optionally, type `make check' to run any self-tests that come with
|
---|
| 69 | the package.
|
---|
| 70 |
|
---|
| 71 | 4. Type `make install' to install the programs and any data files and
|
---|
| 72 | documentation.
|
---|
| 73 |
|
---|
| 74 | 5. You can remove the program binaries and object files from the
|
---|
| 75 | source code directory by typing `make clean'. To also remove the
|
---|
| 76 | files that `configure' created (so you can compile the package for
|
---|
| 77 | a different kind of computer), type `make distclean'. There is
|
---|
| 78 | also a `make maintainer-clean' target, but that is intended mainly
|
---|
| 79 | for the package's developers. If you use it, you may have to get
|
---|
| 80 | all sorts of other programs in order to regenerate files that came
|
---|
| 81 | with the distribution.
|
---|
| 82 |
|
---|
| 83 | Compilers and Options
|
---|
| 84 | =====================
|
---|
| 85 |
|
---|
| 86 | Some systems require unusual options for compilation or linking that
|
---|
| 87 | the `configure' script does not know about. Run `./configure --help'
|
---|
| 88 | for details on some of the pertinent environment variables.
|
---|
| 89 |
|
---|
| 90 | You can give `configure' initial values for configuration parameters
|
---|
| 91 | by setting variables in the command line or in the environment. Here
|
---|
| 92 | is an example:
|
---|
| 93 |
|
---|
| 94 | ./configure CC=c89 CFLAGS=-O2 LIBS=-lposix
|
---|
| 95 |
|
---|
| 96 | *Note Defining Variables::, for more details.
|
---|
| 97 |
|
---|
| 98 | Compiling For Multiple Architectures
|
---|
| 99 | ====================================
|
---|
| 100 |
|
---|
| 101 | You can compile the package for more than one kind of computer at the
|
---|
| 102 | same time, by placing the object files for each architecture in their
|
---|
| 103 | own directory. To do this, you must use a version of `make' that
|
---|
| 104 | supports the `VPATH' variable, such as GNU `make'. `cd' to the
|
---|
| 105 | directory where you want the object files and executables to go and run
|
---|
| 106 | the `configure' script. `configure' automatically checks for the
|
---|
| 107 | source code in the directory that `configure' is in and in `..'.
|
---|
| 108 |
|
---|
| 109 | If you have to use a `make' that does not support the `VPATH'
|
---|
| 110 | variable, you have to compile the package for one architecture at a
|
---|
| 111 | time in the source code directory. After you have installed the
|
---|
| 112 | package for one architecture, use `make distclean' before reconfiguring
|
---|
| 113 | for another architecture.
|
---|
| 114 |
|
---|
| 115 | Installation Names
|
---|
| 116 | ==================
|
---|
| 117 |
|
---|
| 118 | By default, `make install' will install the package's files in
|
---|
| 119 | `/usr/local/bin', `/usr/local/man', etc. You can specify an
|
---|
| 120 | installation prefix other than `/usr/local' by giving `configure' the
|
---|
| 121 | option `--prefix=PATH'.
|
---|
| 122 |
|
---|
| 123 | You can specify separate installation prefixes for
|
---|
| 124 | architecture-specific files and architecture-independent files. If you
|
---|
| 125 | give `configure' the option `--exec-prefix=PATH', the package will use
|
---|
| 126 | PATH as the prefix for installing programs and libraries.
|
---|
| 127 | Documentation and other data files will still use the regular prefix.
|
---|
| 128 |
|
---|
| 129 | In addition, if you use an unusual directory layout you can give
|
---|
| 130 | options like `--bindir=PATH' to specify different values for particular
|
---|
| 131 | kinds of files. Run `configure --help' for a list of the directories
|
---|
| 132 | you can set and what kinds of files go in them.
|
---|
| 133 |
|
---|
| 134 | If the package supports it, you can cause programs to be installed
|
---|
| 135 | with an extra prefix or suffix on their names by giving `configure' the
|
---|
| 136 | option `--program-prefix=PREFIX' or `--program-suffix=SUFFIX'.
|
---|
| 137 |
|
---|
| 138 | Optional Features
|
---|
| 139 | =================
|
---|
| 140 |
|
---|
| 141 | Some packages pay attention to `--enable-FEATURE' options to
|
---|
| 142 | `configure', where FEATURE indicates an optional part of the package.
|
---|
| 143 | They may also pay attention to `--with-PACKAGE' options, where PACKAGE
|
---|
| 144 | is something like `gnu-as' or `x' (for the X Window System). The
|
---|
| 145 | `README' should mention any `--enable-' and `--with-' options that the
|
---|
| 146 | package recognizes.
|
---|
| 147 |
|
---|
| 148 | For packages that use the X Window System, `configure' can usually
|
---|
| 149 | find the X include and library files automatically, but if it doesn't,
|
---|
| 150 | you can use the `configure' options `--x-includes=DIR' and
|
---|
| 151 | `--x-libraries=DIR' to specify their locations.
|
---|
| 152 |
|
---|
| 153 | Specifying the System Type
|
---|
| 154 | ==========================
|
---|
| 155 |
|
---|
| 156 | There may be some features `configure' cannot figure out
|
---|
| 157 | automatically, but needs to determine by the type of machine the package
|
---|
| 158 | will run on. Usually, assuming the package is built to be run on the
|
---|
| 159 | _same_ architectures, `configure' can figure that out, but if it prints
|
---|
| 160 | a message saying it cannot guess the machine type, give it the
|
---|
| 161 | `--build=TYPE' option. TYPE can either be a short name for the system
|
---|
| 162 | type, such as `sun4', or a canonical name which has the form:
|
---|
| 163 |
|
---|
| 164 | CPU-COMPANY-SYSTEM
|
---|
| 165 |
|
---|
| 166 | where SYSTEM can have one of these forms:
|
---|
| 167 |
|
---|
| 168 | OS KERNEL-OS
|
---|
| 169 |
|
---|
| 170 | See the file `config.sub' for the possible values of each field. If
|
---|
| 171 | `config.sub' isn't included in this package, then this package doesn't
|
---|
| 172 | need to know the machine type.
|
---|
| 173 |
|
---|
| 174 | If you are _building_ compiler tools for cross-compiling, you should
|
---|
| 175 | use the `--target=TYPE' option to select the type of system they will
|
---|
| 176 | produce code for.
|
---|
| 177 |
|
---|
| 178 | If you want to _use_ a cross compiler, that generates code for a
|
---|
| 179 | platform different from the build platform, you should specify the
|
---|
| 180 | "host" platform (i.e., that on which the generated programs will
|
---|
| 181 | eventually be run) with `--host=TYPE'.
|
---|
| 182 |
|
---|
| 183 | Sharing Defaults
|
---|
| 184 | ================
|
---|
| 185 |
|
---|
| 186 | If you want to set default values for `configure' scripts to share,
|
---|
| 187 | you can create a site shell script called `config.site' that gives
|
---|
| 188 | default values for variables like `CC', `cache_file', and `prefix'.
|
---|
| 189 | `configure' looks for `PREFIX/share/config.site' if it exists, then
|
---|
| 190 | `PREFIX/etc/config.site' if it exists. Or, you can set the
|
---|
| 191 | `CONFIG_SITE' environment variable to the location of the site script.
|
---|
| 192 | A warning: not all `configure' scripts look for a site script.
|
---|
| 193 |
|
---|
| 194 | Defining Variables
|
---|
| 195 | ==================
|
---|
| 196 |
|
---|
| 197 | Variables not defined in a site shell script can be set in the
|
---|
| 198 | environment passed to `configure'. However, some packages may run
|
---|
| 199 | configure again during the build, and the customized values of these
|
---|
| 200 | variables may be lost. In order to avoid this problem, you should set
|
---|
| 201 | them in the `configure' command line, using `VAR=value'. For example:
|
---|
| 202 |
|
---|
| 203 | ./configure CC=/usr/local2/bin/gcc
|
---|
| 204 |
|
---|
| 205 | will cause the specified gcc to be used as the C compiler (unless it is
|
---|
| 206 | overridden in the site shell script).
|
---|
| 207 |
|
---|
| 208 | `configure' Invocation
|
---|
| 209 | ======================
|
---|
| 210 |
|
---|
| 211 | `configure' recognizes the following options to control how it
|
---|
| 212 | operates.
|
---|
| 213 |
|
---|
| 214 | `--help'
|
---|
| 215 | `-h'
|
---|
| 216 | Print a summary of the options to `configure', and exit.
|
---|
| 217 |
|
---|
| 218 | `--version'
|
---|
| 219 | `-V'
|
---|
| 220 | Print the version of Autoconf used to generate the `configure'
|
---|
| 221 | script, and exit.
|
---|
| 222 |
|
---|
| 223 | `--cache-file=FILE'
|
---|
| 224 | Enable the cache: use and save the results of the tests in FILE,
|
---|
| 225 | traditionally `config.cache'. FILE defaults to `/dev/null' to
|
---|
| 226 | disable caching.
|
---|
| 227 |
|
---|
| 228 | `--config-cache'
|
---|
| 229 | `-C'
|
---|
| 230 | Alias for `--cache-file=config.cache'.
|
---|
| 231 |
|
---|
| 232 | `--quiet'
|
---|
| 233 | `--silent'
|
---|
| 234 | `-q'
|
---|
| 235 | Do not print messages saying which checks are being made. To
|
---|
| 236 | suppress all normal output, redirect it to `/dev/null' (any error
|
---|
| 237 | messages will still be shown).
|
---|
| 238 |
|
---|
| 239 | `--srcdir=DIR'
|
---|
| 240 | Look for the package's source code in directory DIR. Usually
|
---|
| 241 | `configure' can determine that directory automatically.
|
---|
| 242 |
|
---|
| 243 | `configure' also accepts some other, not widely useful, options. Run
|
---|
| 244 | `configure --help' for more details.
|
---|
| 245 |
|
---|