cmogstored 1.8.1 - use default system stack size
[cmogstored.git] / INSTALL
blobacb12f1cddd4129a6045b72a7b6061adf615dc00
1 cmogstored installation
2 ***********************
4 cmogstored uses autotools, so the usual instructions apply:
5 After unpacking the tarball:
7   ./configure && make && make install
9 If you are building from a git clone, see HACKING on how to generate
10 the `configure' shell script
12 Full instructions (as written by the FSF at the bottom).
14 Runtime Requirements (GNU/Linux)
15 ================================
17 A modern GNU/Linux system with NPTL and epoll support is _required_.
19 * Linux kernel 2.6.18 or later
20 * GNU C Library (glibc 2.5 or later)
21 * iostat ("sysstat" in most package managers)
23 The "stable" release of Debian GNU/Linux (currently 8.x) is the
24 recommended runtime environment, but older distros such as
25 CentOS 5.x (or later) shall remain fully-supported.
27 Non-GNU/Linux platforms also supported
28 ======================================
30 GNU/Linux remains the preferred platform, but we will attempt to
31 support other 100% Free Software platforms.
33 * FreeBSD (tested on 9.0, but 8.x should work)
34 * Debian GNU/kFreeBSD 6.0 (missing iostat, but otherwise usable)
36 NetBSD, OpenBSD and DragonFly BSD should be easy to support if there is
37 interest.
39 For platforms without native epoll or kqueue, libkqueue should be usable
40 in the future.  You will need to explicitly configure cmogstored to use
41 libkqueue:
43   ./configure CFLAGS="-g -O2 $(pkg-config libkqueue --cflags)" \
44               LDFLAGS="$(pkg-config libkqueue --libs)"
46 libkqueue is available here: https://sourceforge.net/projects/libkqueue/
48 We will only support running on 100% Free Software platforms.
50 Build Requirements
51 ==================
53 * gcc 4.1 or later or compatible.  We depend on GCC-specific features.
55 See the "HACKING" document for required development tools.
58 Installation Instructions
59 *************************
61 Copyright (C) 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005,
62 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
64    Copying and distribution of this file, with or without modification,
65 are permitted in any medium without royalty provided the copyright
66 notice and this notice are preserved.  This file is offered as-is,
67 without warranty of any kind.
69 Basic Installation
70 ==================
72    Briefly, the shell commands `./configure; make; make install' should
73 configure, build, and install this package.  The following
74 more-detailed instructions are generic; see the `README' file for
75 instructions specific to this package.  Some packages provide this
76 `INSTALL' file but do not implement all of the features documented
77 below.  The lack of an optional feature in a given package is not
78 necessarily a bug.  More recommendations for GNU packages can be found
79 in *note Makefile Conventions: (standards)Makefile Conventions.
81    The `configure' shell script attempts to guess correct values for
82 various system-dependent variables used during compilation.  It uses
83 those values to create a `Makefile' in each directory of the package.
84 It may also create one or more `.h' files containing system-dependent
85 definitions.  Finally, it creates a shell script `config.status' that
86 you can run in the future to recreate the current configuration, and a
87 file `config.log' containing compiler output (useful mainly for
88 debugging `configure').
90    It can also use an optional file (typically called `config.cache'
91 and enabled with `--cache-file=config.cache' or simply `-C') that saves
92 the results of its tests to speed up reconfiguring.  Caching is
93 disabled by default to prevent problems with accidental use of stale
94 cache files.
96    If you need to do unusual things to compile the package, please try
97 to figure out how `configure' could check whether to do them, and mail
98 diffs or instructions to the address given in the `README' so they can
99 be considered for the next release.  If you are using the cache, and at
100 some point `config.cache' contains results you don't want to keep, you
101 may remove or edit it.
103    The file `configure.ac' (or `configure.in') is used to create
104 `configure' by a program called `autoconf'.  You need `configure.ac' if
105 you want to change it or regenerate `configure' using a newer version
106 of `autoconf'.
108    The simplest way to compile this package is:
110   1. `cd' to the directory containing the package's source code and type
111      `./configure' to configure the package for your system.
113      Running `configure' might take a while.  While running, it prints
114      some messages telling which features it is checking for.
116   2. Type `make' to compile the package.
118   3. Optionally, type `make check' to run any self-tests that come with
119      the package, generally using the just-built uninstalled binaries.
121   4. Type `make install' to install the programs and any data files and
122      documentation.  When installing into a prefix owned by root, it is
123      recommended that the package be configured and built as a regular
124      user, and only the `make install' phase executed with root
125      privileges.
127   5. Optionally, type `make installcheck' to repeat any self-tests, but
128      this time using the binaries in their final installed location.
129      This target does not install anything.  Running this target as a
130      regular user, particularly if the prior `make install' required
131      root privileges, verifies that the installation completed
132      correctly.
134   6. You can remove the program binaries and object files from the
135      source code directory by typing `make clean'.  To also remove the
136      files that `configure' created (so you can compile the package for
137      a different kind of computer), type `make distclean'.  There is
138      also a `make maintainer-clean' target, but that is intended mainly
139      for the package's developers.  If you use it, you may have to get
140      all sorts of other programs in order to regenerate files that came
141      with the distribution.
143   7. Often, you can also type `make uninstall' to remove the installed
144      files again.  In practice, not all packages have tested that
145      uninstallation works correctly, even though it is required by the
146      GNU Coding Standards.
148   8. Some packages, particularly those that use Automake, provide `make
149      distcheck', which can by used by developers to test that all other
150      targets like `make install' and `make uninstall' work correctly.
151      This target is generally not run by end users.
153 Compilers and Options
154 =====================
156    Some systems require unusual options for compilation or linking that
157 the `configure' script does not know about.  Run `./configure --help'
158 for details on some of the pertinent environment variables.
160    You can give `configure' initial values for configuration parameters
161 by setting variables in the command line or in the environment.  Here
162 is an example:
164      ./configure CC=c99 CFLAGS=-g LIBS=-lposix
166    *Note Defining Variables::, for more details.
168 Compiling For Multiple Architectures
169 ====================================
171    You can compile the package for more than one kind of computer at the
172 same time, by placing the object files for each architecture in their
173 own directory.  To do this, you can use GNU `make'.  `cd' to the
174 directory where you want the object files and executables to go and run
175 the `configure' script.  `configure' automatically checks for the
176 source code in the directory that `configure' is in and in `..'.  This
177 is known as a "VPATH" build.
179    With a non-GNU `make', it is safer to compile the package for one
180 architecture at a time in the source code directory.  After you have
181 installed the package for one architecture, use `make distclean' before
182 reconfiguring for another architecture.
184    On MacOS X 10.5 and later systems, you can create libraries and
185 executables that work on multiple system types--known as "fat" or
186 "universal" binaries--by specifying multiple `-arch' options to the
187 compiler but only a single `-arch' option to the preprocessor.  Like
188 this:
190      ./configure CC="gcc -arch i386 -arch x86_64 -arch ppc -arch ppc64" \
191                  CXX="g++ -arch i386 -arch x86_64 -arch ppc -arch ppc64" \
192                  CPP="gcc -E" CXXCPP="g++ -E"
194    This is not guaranteed to produce working output in all cases, you
195 may have to build one architecture at a time and combine the results
196 using the `lipo' tool if you have problems.
198 Installation Names
199 ==================
201    By default, `make install' installs the package's commands under
202 `/usr/local/bin', include files under `/usr/local/include', etc.  You
203 can specify an installation prefix other than `/usr/local' by giving
204 `configure' the option `--prefix=PREFIX', where PREFIX must be an
205 absolute file name.
207    You can specify separate installation prefixes for
208 architecture-specific files and architecture-independent files.  If you
209 pass the option `--exec-prefix=PREFIX' to `configure', the package uses
210 PREFIX as the prefix for installing programs and libraries.
211 Documentation and other data files still use the regular prefix.
213    In addition, if you use an unusual directory layout you can give
214 options like `--bindir=DIR' to specify different values for particular
215 kinds of files.  Run `configure --help' for a list of the directories
216 you can set and what kinds of files go in them.  In general, the
217 default for these options is expressed in terms of `${prefix}', so that
218 specifying just `--prefix' will affect all of the other directory
219 specifications that were not explicitly provided.
221    The most portable way to affect installation locations is to pass the
222 correct locations to `configure'; however, many packages provide one or
223 both of the following shortcuts of passing variable assignments to the
224 `make install' command line to change installation locations without
225 having to reconfigure or recompile.
227    The first method involves providing an override variable for each
228 affected directory.  For example, `make install
229 prefix=/alternate/directory' will choose an alternate location for all
230 directory configuration variables that were expressed in terms of
231 `${prefix}'.  Any directories that were specified during `configure',
232 but not in terms of `${prefix}', must each be overridden at install
233 time for the entire installation to be relocated.  The approach of
234 makefile variable overrides for each directory variable is required by
235 the GNU Coding Standards, and ideally causes no recompilation.
236 However, some platforms have known limitations with the semantics of
237 shared libraries that end up requiring recompilation when using this
238 method, particularly noticeable in packages that use GNU Libtool.
240    The second method involves providing the `DESTDIR' variable.  For
241 example, `make install DESTDIR=/alternate/directory' will prepend
242 `/alternate/directory' before all installation names.  The approach of
243 `DESTDIR' overrides is not required by the GNU Coding Standards, and
244 does not work on platforms that have drive letters.  On the other hand,
245 it does better at avoiding recompilation issues, and works well even
246 when some directory options were not specified in terms of `${prefix}'
247 at `configure' time.
249 Optional Features
250 =================
252    If the package supports it, you can cause programs to be installed
253 with an extra prefix or suffix on their names by giving `configure' the
254 option `--program-prefix=PREFIX' or `--program-suffix=SUFFIX'.
256    Some packages pay attention to `--enable-FEATURE' options to
257 `configure', where FEATURE indicates an optional part of the package.
258 They may also pay attention to `--with-PACKAGE' options, where PACKAGE
259 is something like `gnu-as' or `x' (for the X Window System).  The
260 `README' should mention any `--enable-' and `--with-' options that the
261 package recognizes.
263    For packages that use the X Window System, `configure' can usually
264 find the X include and library files automatically, but if it doesn't,
265 you can use the `configure' options `--x-includes=DIR' and
266 `--x-libraries=DIR' to specify their locations.
268    Some packages offer the ability to configure how verbose the
269 execution of `make' will be.  For these packages, running `./configure
270 --enable-silent-rules' sets the default to minimal output, which can be
271 overridden with `make V=1'; while running `./configure
272 --disable-silent-rules' sets the default to verbose, which can be
273 overridden with `make V=0'.
275 Particular systems
276 ==================
278    On HP-UX, the default C compiler is not ANSI C compatible.  If GNU
279 CC is not installed, it is recommended to use the following options in
280 order to use an ANSI C compiler:
282      ./configure CC="cc -Ae -D_XOPEN_SOURCE=500"
284 and if that doesn't work, install pre-built binaries of GCC for HP-UX.
286    On OSF/1 a.k.a. Tru64, some versions of the default C compiler cannot
287 parse its `<wchar.h>' header file.  The option `-nodtk' can be used as
288 a workaround.  If GNU CC is not installed, it is therefore recommended
289 to try
291      ./configure CC="cc"
293 and if that doesn't work, try
295      ./configure CC="cc -nodtk"
297    On Solaris, don't put `/usr/ucb' early in your `PATH'.  This
298 directory contains several dysfunctional programs; working variants of
299 these programs are available in `/usr/bin'.  So, if you need `/usr/ucb'
300 in your `PATH', put it _after_ `/usr/bin'.
302    On Haiku, software installed for all users goes in `/boot/common',
303 not `/usr/local'.  It is recommended to use the following options:
305      ./configure --prefix=/boot/common
307 Specifying the System Type
308 ==========================
310    There may be some features `configure' cannot figure out
311 automatically, but needs to determine by the type of machine the package
312 will run on.  Usually, assuming the package is built to be run on the
313 _same_ architectures, `configure' can figure that out, but if it prints
314 a message saying it cannot guess the machine type, give it the
315 `--build=TYPE' option.  TYPE can either be a short name for the system
316 type, such as `sun4', or a canonical name which has the form:
318      CPU-COMPANY-SYSTEM
320 where SYSTEM can have one of these forms:
322      OS
323      KERNEL-OS
325    See the file `config.sub' for the possible values of each field.  If
326 `config.sub' isn't included in this package, then this package doesn't
327 need to know the machine type.
329    If you are _building_ compiler tools for cross-compiling, you should
330 use the option `--target=TYPE' to select the type of system they will
331 produce code for.
333    If you want to _use_ a cross compiler, that generates code for a
334 platform different from the build platform, you should specify the
335 "host" platform (i.e., that on which the generated programs will
336 eventually be run) with `--host=TYPE'.
338 Sharing Defaults
339 ================
341    If you want to set default values for `configure' scripts to share,
342 you can create a site shell script called `config.site' that gives
343 default values for variables like `CC', `cache_file', and `prefix'.
344 `configure' looks for `PREFIX/share/config.site' if it exists, then
345 `PREFIX/etc/config.site' if it exists.  Or, you can set the
346 `CONFIG_SITE' environment variable to the location of the site script.
347 A warning: not all `configure' scripts look for a site script.
349 Defining Variables
350 ==================
352    Variables not defined in a site shell script can be set in the
353 environment passed to `configure'.  However, some packages may run
354 configure again during the build, and the customized values of these
355 variables may be lost.  In order to avoid this problem, you should set
356 them in the `configure' command line, using `VAR=value'.  For example:
358      ./configure CC=/usr/local2/bin/gcc
360 causes the specified `gcc' to be used as the C compiler (unless it is
361 overridden in the site shell script).
363 Unfortunately, this technique does not work for `CONFIG_SHELL' due to
364 an Autoconf bug.  Until the bug is fixed you can use this workaround:
366      CONFIG_SHELL=/bin/bash /bin/bash ./configure CONFIG_SHELL=/bin/bash
368 `configure' Invocation
369 ======================
371    `configure' recognizes the following options to control how it
372 operates.
374 `--help'
375 `-h'
376      Print a summary of all of the options to `configure', and exit.
378 `--help=short'
379 `--help=recursive'
380      Print a summary of the options unique to this package's
381      `configure', and exit.  The `short' variant lists options used
382      only in the top level, while the `recursive' variant lists options
383      also present in any nested packages.
385 `--version'
386 `-V'
387      Print the version of Autoconf used to generate the `configure'
388      script, and exit.
390 `--cache-file=FILE'
391      Enable the cache: use and save the results of the tests in FILE,
392      traditionally `config.cache'.  FILE defaults to `/dev/null' to
393      disable caching.
395 `--config-cache'
396 `-C'
397      Alias for `--cache-file=config.cache'.
399 `--quiet'
400 `--silent'
401 `-q'
402      Do not print messages saying which checks are being made.  To
403      suppress all normal output, redirect it to `/dev/null' (any error
404      messages will still be shown).
406 `--srcdir=DIR'
407      Look for the package's source code in directory DIR.  Usually
408      `configure' can determine that directory automatically.
410 `--prefix=DIR'
411      Use DIR as the installation prefix.  *note Installation Names::
412      for more details, including other options available for fine-tuning
413      the installation locations.
415 `--no-create'
416 `-n'
417      Run the configure checks, but stop before creating any output
418      files.
420 `configure' also accepts some other, not widely useful, options.  Run
421 `configure --help' for more details.