annotate src/fftw-3.3.3/INSTALL @ 169:223a55898ab9 tip default

Add null config files
author Chris Cannam <cannam@all-day-breakfast.com>
date Mon, 02 Mar 2020 14:03:47 +0000
parents 89f5e221ed7b
children
rev   line source
cannam@95 1 Installation Instructions
cannam@95 2 *************************
cannam@95 3
cannam@95 4 Copyright (C) 1994-1996, 1999-2002, 2004-2011 Free Software Foundation,
cannam@95 5 Inc.
cannam@95 6
cannam@95 7 Copying and distribution of this file, with or without modification,
cannam@95 8 are permitted in any medium without royalty provided the copyright
cannam@95 9 notice and this notice are preserved. This file is offered as-is,
cannam@95 10 without warranty of any kind.
cannam@95 11
cannam@95 12 Basic Installation
cannam@95 13 ==================
cannam@95 14
cannam@95 15 Briefly, the shell commands `./configure; make; make install' should
cannam@95 16 configure, build, and install this package. The following
cannam@95 17 more-detailed instructions are generic; see the `README' file for
cannam@95 18 instructions specific to this package. Some packages provide this
cannam@95 19 `INSTALL' file but do not implement all of the features documented
cannam@95 20 below. The lack of an optional feature in a given package is not
cannam@95 21 necessarily a bug. More recommendations for GNU packages can be found
cannam@95 22 in *note Makefile Conventions: (standards)Makefile Conventions.
cannam@95 23
cannam@95 24 The `configure' shell script attempts to guess correct values for
cannam@95 25 various system-dependent variables used during compilation. It uses
cannam@95 26 those values to create a `Makefile' in each directory of the package.
cannam@95 27 It may also create one or more `.h' files containing system-dependent
cannam@95 28 definitions. Finally, it creates a shell script `config.status' that
cannam@95 29 you can run in the future to recreate the current configuration, and a
cannam@95 30 file `config.log' containing compiler output (useful mainly for
cannam@95 31 debugging `configure').
cannam@95 32
cannam@95 33 It can also use an optional file (typically called `config.cache'
cannam@95 34 and enabled with `--cache-file=config.cache' or simply `-C') that saves
cannam@95 35 the results of its tests to speed up reconfiguring. Caching is
cannam@95 36 disabled by default to prevent problems with accidental use of stale
cannam@95 37 cache files.
cannam@95 38
cannam@95 39 If you need to do unusual things to compile the package, please try
cannam@95 40 to figure out how `configure' could check whether to do them, and mail
cannam@95 41 diffs or instructions to the address given in the `README' so they can
cannam@95 42 be considered for the next release. If you are using the cache, and at
cannam@95 43 some point `config.cache' contains results you don't want to keep, you
cannam@95 44 may remove or edit it.
cannam@95 45
cannam@95 46 The file `configure.ac' (or `configure.in') is used to create
cannam@95 47 `configure' by a program called `autoconf'. You need `configure.ac' if
cannam@95 48 you want to change it or regenerate `configure' using a newer version
cannam@95 49 of `autoconf'.
cannam@95 50
cannam@95 51 The simplest way to compile this package is:
cannam@95 52
cannam@95 53 1. `cd' to the directory containing the package's source code and type
cannam@95 54 `./configure' to configure the package for your system.
cannam@95 55
cannam@95 56 Running `configure' might take a while. While running, it prints
cannam@95 57 some messages telling which features it is checking for.
cannam@95 58
cannam@95 59 2. Type `make' to compile the package.
cannam@95 60
cannam@95 61 3. Optionally, type `make check' to run any self-tests that come with
cannam@95 62 the package, generally using the just-built uninstalled binaries.
cannam@95 63
cannam@95 64 4. Type `make install' to install the programs and any data files and
cannam@95 65 documentation. When installing into a prefix owned by root, it is
cannam@95 66 recommended that the package be configured and built as a regular
cannam@95 67 user, and only the `make install' phase executed with root
cannam@95 68 privileges.
cannam@95 69
cannam@95 70 5. Optionally, type `make installcheck' to repeat any self-tests, but
cannam@95 71 this time using the binaries in their final installed location.
cannam@95 72 This target does not install anything. Running this target as a
cannam@95 73 regular user, particularly if the prior `make install' required
cannam@95 74 root privileges, verifies that the installation completed
cannam@95 75 correctly.
cannam@95 76
cannam@95 77 6. You can remove the program binaries and object files from the
cannam@95 78 source code directory by typing `make clean'. To also remove the
cannam@95 79 files that `configure' created (so you can compile the package for
cannam@95 80 a different kind of computer), type `make distclean'. There is
cannam@95 81 also a `make maintainer-clean' target, but that is intended mainly
cannam@95 82 for the package's developers. If you use it, you may have to get
cannam@95 83 all sorts of other programs in order to regenerate files that came
cannam@95 84 with the distribution.
cannam@95 85
cannam@95 86 7. Often, you can also type `make uninstall' to remove the installed
cannam@95 87 files again. In practice, not all packages have tested that
cannam@95 88 uninstallation works correctly, even though it is required by the
cannam@95 89 GNU Coding Standards.
cannam@95 90
cannam@95 91 8. Some packages, particularly those that use Automake, provide `make
cannam@95 92 distcheck', which can by used by developers to test that all other
cannam@95 93 targets like `make install' and `make uninstall' work correctly.
cannam@95 94 This target is generally not run by end users.
cannam@95 95
cannam@95 96 Compilers and Options
cannam@95 97 =====================
cannam@95 98
cannam@95 99 Some systems require unusual options for compilation or linking that
cannam@95 100 the `configure' script does not know about. Run `./configure --help'
cannam@95 101 for details on some of the pertinent environment variables.
cannam@95 102
cannam@95 103 You can give `configure' initial values for configuration parameters
cannam@95 104 by setting variables in the command line or in the environment. Here
cannam@95 105 is an example:
cannam@95 106
cannam@95 107 ./configure CC=c99 CFLAGS=-g LIBS=-lposix
cannam@95 108
cannam@95 109 *Note Defining Variables::, for more details.
cannam@95 110
cannam@95 111 Compiling For Multiple Architectures
cannam@95 112 ====================================
cannam@95 113
cannam@95 114 You can compile the package for more than one kind of computer at the
cannam@95 115 same time, by placing the object files for each architecture in their
cannam@95 116 own directory. To do this, you can use GNU `make'. `cd' to the
cannam@95 117 directory where you want the object files and executables to go and run
cannam@95 118 the `configure' script. `configure' automatically checks for the
cannam@95 119 source code in the directory that `configure' is in and in `..'. This
cannam@95 120 is known as a "VPATH" build.
cannam@95 121
cannam@95 122 With a non-GNU `make', it is safer to compile the package for one
cannam@95 123 architecture at a time in the source code directory. After you have
cannam@95 124 installed the package for one architecture, use `make distclean' before
cannam@95 125 reconfiguring for another architecture.
cannam@95 126
cannam@95 127 On MacOS X 10.5 and later systems, you can create libraries and
cannam@95 128 executables that work on multiple system types--known as "fat" or
cannam@95 129 "universal" binaries--by specifying multiple `-arch' options to the
cannam@95 130 compiler but only a single `-arch' option to the preprocessor. Like
cannam@95 131 this:
cannam@95 132
cannam@95 133 ./configure CC="gcc -arch i386 -arch x86_64 -arch ppc -arch ppc64" \
cannam@95 134 CXX="g++ -arch i386 -arch x86_64 -arch ppc -arch ppc64" \
cannam@95 135 CPP="gcc -E" CXXCPP="g++ -E"
cannam@95 136
cannam@95 137 This is not guaranteed to produce working output in all cases, you
cannam@95 138 may have to build one architecture at a time and combine the results
cannam@95 139 using the `lipo' tool if you have problems.
cannam@95 140
cannam@95 141 Installation Names
cannam@95 142 ==================
cannam@95 143
cannam@95 144 By default, `make install' installs the package's commands under
cannam@95 145 `/usr/local/bin', include files under `/usr/local/include', etc. You
cannam@95 146 can specify an installation prefix other than `/usr/local' by giving
cannam@95 147 `configure' the option `--prefix=PREFIX', where PREFIX must be an
cannam@95 148 absolute file name.
cannam@95 149
cannam@95 150 You can specify separate installation prefixes for
cannam@95 151 architecture-specific files and architecture-independent files. If you
cannam@95 152 pass the option `--exec-prefix=PREFIX' to `configure', the package uses
cannam@95 153 PREFIX as the prefix for installing programs and libraries.
cannam@95 154 Documentation and other data files still use the regular prefix.
cannam@95 155
cannam@95 156 In addition, if you use an unusual directory layout you can give
cannam@95 157 options like `--bindir=DIR' to specify different values for particular
cannam@95 158 kinds of files. Run `configure --help' for a list of the directories
cannam@95 159 you can set and what kinds of files go in them. In general, the
cannam@95 160 default for these options is expressed in terms of `${prefix}', so that
cannam@95 161 specifying just `--prefix' will affect all of the other directory
cannam@95 162 specifications that were not explicitly provided.
cannam@95 163
cannam@95 164 The most portable way to affect installation locations is to pass the
cannam@95 165 correct locations to `configure'; however, many packages provide one or
cannam@95 166 both of the following shortcuts of passing variable assignments to the
cannam@95 167 `make install' command line to change installation locations without
cannam@95 168 having to reconfigure or recompile.
cannam@95 169
cannam@95 170 The first method involves providing an override variable for each
cannam@95 171 affected directory. For example, `make install
cannam@95 172 prefix=/alternate/directory' will choose an alternate location for all
cannam@95 173 directory configuration variables that were expressed in terms of
cannam@95 174 `${prefix}'. Any directories that were specified during `configure',
cannam@95 175 but not in terms of `${prefix}', must each be overridden at install
cannam@95 176 time for the entire installation to be relocated. The approach of
cannam@95 177 makefile variable overrides for each directory variable is required by
cannam@95 178 the GNU Coding Standards, and ideally causes no recompilation.
cannam@95 179 However, some platforms have known limitations with the semantics of
cannam@95 180 shared libraries that end up requiring recompilation when using this
cannam@95 181 method, particularly noticeable in packages that use GNU Libtool.
cannam@95 182
cannam@95 183 The second method involves providing the `DESTDIR' variable. For
cannam@95 184 example, `make install DESTDIR=/alternate/directory' will prepend
cannam@95 185 `/alternate/directory' before all installation names. The approach of
cannam@95 186 `DESTDIR' overrides is not required by the GNU Coding Standards, and
cannam@95 187 does not work on platforms that have drive letters. On the other hand,
cannam@95 188 it does better at avoiding recompilation issues, and works well even
cannam@95 189 when some directory options were not specified in terms of `${prefix}'
cannam@95 190 at `configure' time.
cannam@95 191
cannam@95 192 Optional Features
cannam@95 193 =================
cannam@95 194
cannam@95 195 If the package supports it, you can cause programs to be installed
cannam@95 196 with an extra prefix or suffix on their names by giving `configure' the
cannam@95 197 option `--program-prefix=PREFIX' or `--program-suffix=SUFFIX'.
cannam@95 198
cannam@95 199 Some packages pay attention to `--enable-FEATURE' options to
cannam@95 200 `configure', where FEATURE indicates an optional part of the package.
cannam@95 201 They may also pay attention to `--with-PACKAGE' options, where PACKAGE
cannam@95 202 is something like `gnu-as' or `x' (for the X Window System). The
cannam@95 203 `README' should mention any `--enable-' and `--with-' options that the
cannam@95 204 package recognizes.
cannam@95 205
cannam@95 206 For packages that use the X Window System, `configure' can usually
cannam@95 207 find the X include and library files automatically, but if it doesn't,
cannam@95 208 you can use the `configure' options `--x-includes=DIR' and
cannam@95 209 `--x-libraries=DIR' to specify their locations.
cannam@95 210
cannam@95 211 Some packages offer the ability to configure how verbose the
cannam@95 212 execution of `make' will be. For these packages, running `./configure
cannam@95 213 --enable-silent-rules' sets the default to minimal output, which can be
cannam@95 214 overridden with `make V=1'; while running `./configure
cannam@95 215 --disable-silent-rules' sets the default to verbose, which can be
cannam@95 216 overridden with `make V=0'.
cannam@95 217
cannam@95 218 Particular systems
cannam@95 219 ==================
cannam@95 220
cannam@95 221 On HP-UX, the default C compiler is not ANSI C compatible. If GNU
cannam@95 222 CC is not installed, it is recommended to use the following options in
cannam@95 223 order to use an ANSI C compiler:
cannam@95 224
cannam@95 225 ./configure CC="cc -Ae -D_XOPEN_SOURCE=500"
cannam@95 226
cannam@95 227 and if that doesn't work, install pre-built binaries of GCC for HP-UX.
cannam@95 228
cannam@95 229 HP-UX `make' updates targets which have the same time stamps as
cannam@95 230 their prerequisites, which makes it generally unusable when shipped
cannam@95 231 generated files such as `configure' are involved. Use GNU `make'
cannam@95 232 instead.
cannam@95 233
cannam@95 234 On OSF/1 a.k.a. Tru64, some versions of the default C compiler cannot
cannam@95 235 parse its `<wchar.h>' header file. The option `-nodtk' can be used as
cannam@95 236 a workaround. If GNU CC is not installed, it is therefore recommended
cannam@95 237 to try
cannam@95 238
cannam@95 239 ./configure CC="cc"
cannam@95 240
cannam@95 241 and if that doesn't work, try
cannam@95 242
cannam@95 243 ./configure CC="cc -nodtk"
cannam@95 244
cannam@95 245 On Solaris, don't put `/usr/ucb' early in your `PATH'. This
cannam@95 246 directory contains several dysfunctional programs; working variants of
cannam@95 247 these programs are available in `/usr/bin'. So, if you need `/usr/ucb'
cannam@95 248 in your `PATH', put it _after_ `/usr/bin'.
cannam@95 249
cannam@95 250 On Haiku, software installed for all users goes in `/boot/common',
cannam@95 251 not `/usr/local'. It is recommended to use the following options:
cannam@95 252
cannam@95 253 ./configure --prefix=/boot/common
cannam@95 254
cannam@95 255 Specifying the System Type
cannam@95 256 ==========================
cannam@95 257
cannam@95 258 There may be some features `configure' cannot figure out
cannam@95 259 automatically, but needs to determine by the type of machine the package
cannam@95 260 will run on. Usually, assuming the package is built to be run on the
cannam@95 261 _same_ architectures, `configure' can figure that out, but if it prints
cannam@95 262 a message saying it cannot guess the machine type, give it the
cannam@95 263 `--build=TYPE' option. TYPE can either be a short name for the system
cannam@95 264 type, such as `sun4', or a canonical name which has the form:
cannam@95 265
cannam@95 266 CPU-COMPANY-SYSTEM
cannam@95 267
cannam@95 268 where SYSTEM can have one of these forms:
cannam@95 269
cannam@95 270 OS
cannam@95 271 KERNEL-OS
cannam@95 272
cannam@95 273 See the file `config.sub' for the possible values of each field. If
cannam@95 274 `config.sub' isn't included in this package, then this package doesn't
cannam@95 275 need to know the machine type.
cannam@95 276
cannam@95 277 If you are _building_ compiler tools for cross-compiling, you should
cannam@95 278 use the option `--target=TYPE' to select the type of system they will
cannam@95 279 produce code for.
cannam@95 280
cannam@95 281 If you want to _use_ a cross compiler, that generates code for a
cannam@95 282 platform different from the build platform, you should specify the
cannam@95 283 "host" platform (i.e., that on which the generated programs will
cannam@95 284 eventually be run) with `--host=TYPE'.
cannam@95 285
cannam@95 286 Sharing Defaults
cannam@95 287 ================
cannam@95 288
cannam@95 289 If you want to set default values for `configure' scripts to share,
cannam@95 290 you can create a site shell script called `config.site' that gives
cannam@95 291 default values for variables like `CC', `cache_file', and `prefix'.
cannam@95 292 `configure' looks for `PREFIX/share/config.site' if it exists, then
cannam@95 293 `PREFIX/etc/config.site' if it exists. Or, you can set the
cannam@95 294 `CONFIG_SITE' environment variable to the location of the site script.
cannam@95 295 A warning: not all `configure' scripts look for a site script.
cannam@95 296
cannam@95 297 Defining Variables
cannam@95 298 ==================
cannam@95 299
cannam@95 300 Variables not defined in a site shell script can be set in the
cannam@95 301 environment passed to `configure'. However, some packages may run
cannam@95 302 configure again during the build, and the customized values of these
cannam@95 303 variables may be lost. In order to avoid this problem, you should set
cannam@95 304 them in the `configure' command line, using `VAR=value'. For example:
cannam@95 305
cannam@95 306 ./configure CC=/usr/local2/bin/gcc
cannam@95 307
cannam@95 308 causes the specified `gcc' to be used as the C compiler (unless it is
cannam@95 309 overridden in the site shell script).
cannam@95 310
cannam@95 311 Unfortunately, this technique does not work for `CONFIG_SHELL' due to
cannam@95 312 an Autoconf bug. Until the bug is fixed you can use this workaround:
cannam@95 313
cannam@95 314 CONFIG_SHELL=/bin/bash /bin/bash ./configure CONFIG_SHELL=/bin/bash
cannam@95 315
cannam@95 316 `configure' Invocation
cannam@95 317 ======================
cannam@95 318
cannam@95 319 `configure' recognizes the following options to control how it
cannam@95 320 operates.
cannam@95 321
cannam@95 322 `--help'
cannam@95 323 `-h'
cannam@95 324 Print a summary of all of the options to `configure', and exit.
cannam@95 325
cannam@95 326 `--help=short'
cannam@95 327 `--help=recursive'
cannam@95 328 Print a summary of the options unique to this package's
cannam@95 329 `configure', and exit. The `short' variant lists options used
cannam@95 330 only in the top level, while the `recursive' variant lists options
cannam@95 331 also present in any nested packages.
cannam@95 332
cannam@95 333 `--version'
cannam@95 334 `-V'
cannam@95 335 Print the version of Autoconf used to generate the `configure'
cannam@95 336 script, and exit.
cannam@95 337
cannam@95 338 `--cache-file=FILE'
cannam@95 339 Enable the cache: use and save the results of the tests in FILE,
cannam@95 340 traditionally `config.cache'. FILE defaults to `/dev/null' to
cannam@95 341 disable caching.
cannam@95 342
cannam@95 343 `--config-cache'
cannam@95 344 `-C'
cannam@95 345 Alias for `--cache-file=config.cache'.
cannam@95 346
cannam@95 347 `--quiet'
cannam@95 348 `--silent'
cannam@95 349 `-q'
cannam@95 350 Do not print messages saying which checks are being made. To
cannam@95 351 suppress all normal output, redirect it to `/dev/null' (any error
cannam@95 352 messages will still be shown).
cannam@95 353
cannam@95 354 `--srcdir=DIR'
cannam@95 355 Look for the package's source code in directory DIR. Usually
cannam@95 356 `configure' can determine that directory automatically.
cannam@95 357
cannam@95 358 `--prefix=DIR'
cannam@95 359 Use DIR as the installation prefix. *note Installation Names::
cannam@95 360 for more details, including other options available for fine-tuning
cannam@95 361 the installation locations.
cannam@95 362
cannam@95 363 `--no-create'
cannam@95 364 `-n'
cannam@95 365 Run the configure checks, but stop before creating any output
cannam@95 366 files.
cannam@95 367
cannam@95 368 `configure' also accepts some other, not widely useful, options. Run
cannam@95 369 `configure --help' for more details.
cannam@95 370