Log parameter to GlassTable::close()
[xapian.git] / xapian-bindings / INSTALL
blob14e777822cf9a9ada45205108f93afe8231a2d6d
1 Xapian-bindings Installation
2 ============================
4 Originally based on automake's generic "Installation Instructions" which are:
6 Copyright (C) 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005,
7 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
9    Copying and distribution of this file, with or without modification,
10 are permitted in any medium without royalty provided the copyright
11 notice and this notice are preserved.  This file is offered as-is,
12 without warranty of any kind.
14 Known Issues
15 ============
17    * The bindings glue code generated by SWIG seems to require a lot of memory
18      to compile and can take several minutes even on a fast machine (at least
19      with most versions of g++).  Some systems (such as OpenBSD) may require
20      you to increase the amount of memory a process can use (using ulimit is
21      the simplest way).  Alternatively you can compile the bindings without
22      optimisation using:
24          make CXXFLAGS=-g
26      Xapian-bindings version 0.9.3 reduced the compile time by something like a
27      factor of 3 and probably also reduced memory usage significantly, but you
28      might still encounter this issue on slower machines with less memory.
30 Quick Installation Guide
31 ========================
33 The simplest way to compile this package is:
35   1. 'cd' to the directory containing the package's source code and type
36      './configure' to configure the package for your system.
38      You need to make sure that xapian-config from xapian-core is on your path,
39      or else pass its full path to xapian-bindings's configure script:
41        ./configure XAPIAN_CONFIG=/path/to/xapian-config
43      By default, configure will enable building of bindings for all languages
44      which it can find the required tools for.  Alternatively you can specify
45      exactly which bindings you want to build by passing one or more of the
46      following options to configure:
48        --with-csharp        enable CSharp bindings
49        --with-java          enable Java bindings
50        --with-lua           enable Lua bindings
51        --with-perl          enable Perl bindings
52        --with-php           enable PHP bindings
53        --with-python        enable Python bindings
54        --with-ruby          enable Ruby bindings
55        --with-tcl           enable Tcl bindings
57      If you've requested particular bindings using these options, then
58      configure will fail with an error if it is missing the prerequisite
59      tools, libraries, header files, etc required to build bindings for
60      any of the specified languages.
62      If you have more than one version of a particular language installed
63      you can tell configure which to build the bindings for by setting
64      variables on the configure command line.  For a full list of such
65      variables, see the output of 'configure --help' - for example, for
66      Python you might use:
68        ./configure PYTHON=/opt/bin/python2.6
70      If you don't have root access and want to compile any of the bindings
71      other than C#, Java and PHP, read the next section: "Installing without
72      root access".
74      Running 'configure' might take a while.  While running, it prints
75      some messages telling which features it is checking for.
77   2. Type 'make' to compile the package.
79   3. Optionally, type 'make check' to run the self-tests that come with
80      the package, using the just-built uninstalled binaries.
82   4. Type 'make install' to install the programs and any data files and
83      documentation.  When installing into a prefix owned by root, it is
84      recommended that the package be configured and built as a regular
85      user, and only the 'make install' phase executed with root
86      privileges.
88   5. You can remove the program binaries and object files from the
89      source code directory by typing 'make clean'.  To also remove the
90      files that 'configure' created (so you can compile the package for
91      a different kind of computer), type 'make distclean'.  There is
92      also a 'make maintainer-clean' target, but that is intended mainly
93      for the package's developers.  If you use it, you may have to get
94      all sorts of other programs in order to regenerate files that came
95      with the distribution.
97   6. You can also type 'make uninstall' to remove the installed files
98      again.
100 Installing without root access
101 ==============================
103      By default the bindings for all languages apart from Java and C# will
104      automatically detect where the language interpreter expects extension
105      modules to be installed and try to install there.  This is a problem
106      if you want to install them and don't have root access.  In this case
107      follow the instructions for the particular language below (note: you
108      still build several at once - just pass the arguments listed below
109      for each language to "./configure", to "make", and to "make install".)
110      Note that you also need to pass a "--prefix" option to configure so that
111      the documentation and examples can be installed.
113   PHP:
115      With current releases of PHP, there doesn't seem to be a good way to
116      install the PHP bindings without root access such that they can be used
117      from PHP run from a webserver, which is what most users want to do.
119      If you're only interested in running code from the command line (via PHP's
120      CLI SAPI) then the following will work:
122      ./configure --with-php --prefix=$HOME/install PHP_EXTENSION_DIR=$HOME/my_php_extensions
123      make
124      make install
126      Then tell the PHP interpreter to load extensions from there:
128      php -d extension_dir="$HOME/my_php_extensions" myscript.php
130      However, this will stop PHP from looking in the default place for
131      extensions!  It doesn't seem to be possible to specify more than one
132      directory, but you can copy or symlink system installed extensions
133      from the default extension directory to $HOME/my_php_extensions like
134      so:
136      ln -s "`php -r 'print PHP_EXTENSION_DIR;'`"/* "$HOME/my_php_extensions"
138      This will symlink all of them, but you only actually need those that
139      get loaded.
141   Python:
143      ./configure --with-python --prefix=$HOME/install PYTHON_LIB=$HOME/.local
144      make
145      make install
147      Python 2.6 and later will look in ~/.local for packages automatically
148      so the above is all that is required.
150      For older Python versions, or if you set PYTHON_LIB to a different
151      directory, you'll need to tell Python to look for modules in that
152      directory.  Here are two possible ways to do that:
154      setenv PYTHONPATH=$HOME/.local python myscript.py
156      Or you can add this to the start of your Python scripts:
158      import os
159      import sys
160      sys.path.insert(0, os.environ['HOME'] + "/.local")
161      import xapian
163   Ruby:
165      ./configure --with-ruby --prefix=$HOME/install RUBY_LIB=$HOME/my_ruby_modules RUBY_LIB_ARCH=$HOME/my_ruby_modules
166      make
167      make install
169      And then you'll need to tell Ruby to look for modules in this directory:
171      ruby -I$HOME/my_ruby_modules myscript.rb
173   Tcl8:
175      ./configure --with-tcl --prefix=$HOME/install TCL_LIB=$HOME/my_tcl_modules
176      make
177      make install
179      And then add the following to the start of your script to load Xapian:
181      load [file join "/home/USERNAME/my_tcl_modules" xapian.so]
183   Perl:
185      ./configure --with-perl --prefix=$HOME/install PERL_LIB=$HOME/my_perl_modules
186      make
187      make install
189      And then you'll need to tell Perl to look for modules in this directory:
191      perl -I$HOME/my_perl_modules myscript.pl
193 Compilers and Options
194 =====================
196    Some systems may require unusual options for compilation or linking that
197 the 'configure' script does not know about.  Run './configure --help'
198 for details on some of the pertinent environment variables.
200    You can give 'configure' initial values for configuration parameters
201 by setting variables in the command line or in the environment.  Here
202 is an example:
204      ./configure LIBS=-lposix
206    If your system requires special flags, do let us know.  Where possible
207 we'd prefer configure to determine such flags by itself, but if we can't
208 then at least we can document the special flags to help other users of
209 systems like yours.
211 Compiling For Multiple Architectures
212 ====================================
214 When using GCC on platforms which support multiple architecture, the simplest
215 way to select a non-default architecture is to pass a CXX setting to configure
216 which includes the appropriate -m option - e.g. to build for x86 on x86-64
217 you would configure with:
219 ./configure CXX='g++ -m32'
221 On Mac OS X 10.5 and later systems, you can create libraries and
222 executables that work on multiple system types--known as "fat" or
223 "universal" binaries--by specifying multiple '-arch' options to the
224 compiler but only a single '-arch' option to the preprocessor.  Like
225 this:
227      ./configure CC="gcc -arch i386 -arch x86_64 -arch ppc -arch ppc64" \
228                  CXX="g++ -arch i386 -arch x86_64 -arch ppc -arch ppc64" \
229                  CPP="gcc -E" CXXCPP="g++ -E"
231 Building in a separate directory
232 ================================
234 If you wish to perform your build in a separate directory from the source,
235 create and change to the build directory, and run the configure script (in
236 the source directory) from the build directory, like so:
238   mkdir BUILD
239   cd BUILD
240   ../configure
242 Installation Names
243 ==================
245    By default, 'make install' installs the package's commands under
246 '/usr/local/bin', include files under '/usr/local/include', etc.  You
247 can specify an installation prefix other than '/usr/local' by giving
248 'configure' the option '--prefix=PREFIX', where PREFIX must be an
249 absolute file name.
251    You can specify separate installation prefixes for
252 architecture-specific files and architecture-independent files.  If you
253 pass the option '--exec-prefix=PREFIX' to 'configure', the package uses
254 PREFIX as the prefix for installing programs and libraries.
255 Documentation and other data files still use the regular prefix.
257    In addition, if you use an unusual directory layout you can give
258 options like '--bindir=DIR' to specify different values for particular
259 kinds of files.  Run 'configure --help' for a list of the directories
260 you can set and what kinds of files go in them.
262 Specifying the System Type
263 ==========================
265    There may be some features 'configure' cannot figure out
266 automatically, but needs to determine by the type of machine the package
267 will run on.  Usually, assuming the package is built to be run on the
268 _same_ architectures, 'configure' can figure that out, but if it prints
269 a message saying it cannot guess the machine type, give it the
270 '--build=TYPE' option.  TYPE can either be a short name for the system
271 type, such as 'sun4', or a canonical name which has the form:
273      CPU-COMPANY-SYSTEM
275 where SYSTEM can have one of these forms:
277      OS
278      KERNEL-OS
280    See the file 'config.sub' for the possible values of each field.  If
281 'config.sub' isn't included in this package, then this package doesn't
282 need to know the machine type.
284    If you want to _use_ a cross compiler, that generates code for a
285 platform different from the build platform, you should specify the
286 "host" platform (i.e., that on which the generated programs will
287 eventually be run) with '--host=TYPE'.
289 Sharing Defaults
290 ================
292    If you want to set default values for 'configure' scripts to share,
293 you can create a site shell script called 'config.site' that gives
294 default values for variables like 'CXX', 'cache_file', and 'prefix'.
295 'configure' looks for 'PREFIX/share/config.site' if it exists, then
296 'PREFIX/etc/config.site' if it exists.  Or, you can set the
297 'CONFIG_SITE' environment variable to the location of the site script.
298 A warning: not all 'configure' scripts look for a site script.
300 Defining Variables
301 ==================
303    Variables not defined in a site shell script can be set in the
304 environment passed to 'configure'.  However, some packages may run
305 configure again during the build, and the customized values of these
306 variables may be lost.  In order to avoid this problem, you should set
307 them in the 'configure' command line, using 'VAR=value'.  For example:
309      ./configure CXX=/usr/local2/bin/g++
311 causes the specified 'g++' to be used as the C++ compiler (unless it is
312 overridden in the site shell script).
314 'configure' Invocation
315 ======================
317    As well as the options documented in the "Quick Installation Guide",
318 'configure' recognizes the following standard options to control how it
319 operates:
321 '--help'
322 '-h'
323      Print a summary of all of the options to 'configure', and exit.
325 '--version'
326 '-V'
327      Print the version of Autoconf used to generate the 'configure'
328      script, and exit.
330 '--cache-file=FILE'
331      Enable the cache: use and save the results of the tests in FILE,
332      traditionally 'config.cache'.  FILE defaults to '/dev/null' to
333      disable caching.
335 '--config-cache'
336 '-C'
337      Alias for '--cache-file=config.cache'.
339 '--quiet'
340 '--silent'
341 '-q'
342      Do not print messages saying which checks are being made.  To
343      suppress all normal output, redirect it to '/dev/null' (any error
344      messages will still be shown).
346 '--srcdir=DIR'
347      Look for the package's source code in directory DIR.  Usually
348      'configure' can determine that directory automatically.
350 'configure' also accepts some other, not widely useful, options.  Run
351 'configure --help' for more details.