INSTALL 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212
  1. Basic Installation
  2. ==================
  3. The native build system for libpqxx is based on `configure` and `make`,
  4. but there is also a CMake build.
  5. Native build
  6. ------------
  7. The `configure' shell script attempts to guess correct values for
  8. various system-dependent variables used during compilation. It uses
  9. those values to create a `Makefile' in each directory of the package.
  10. It may also create one or more `.h' files containing system-dependent
  11. definitions. Finally, it creates a shell script `config.status' that
  12. you can run in the future to recreate the current configuration, a file
  13. `config.cache' that saves the results of its tests to speed up
  14. reconfiguring, and a file `config.log' containing compiler output
  15. (useful mainly for debugging `configure').
  16. If you need to do unusual things to compile the package, please try
  17. to figure out how `configure' could check whether to do them, and mail
  18. diffs or instructions to the address given in the `README.md' so they can
  19. be considered for the next release. If at some point `config.cache'
  20. contains results you don't want to keep, you may remove or edit it.
  21. The file `configure.in' is used to create `configure' by a program
  22. called `autoconf'. You only need `configure.in' if you want to change
  23. it or regenerate `configure' using a newer version of `autoconf'.
  24. The simplest way to compile this package is:
  25. 1. `cd' to the directory containing the package's source code and type
  26. `./configure' to configure the package for your system. If you're
  27. using `csh' on an old version of System V, you might need to type
  28. `sh ./configure' instead to prevent `csh' from trying to execute
  29. `configure' itself. Running `configure' takes awhile. While
  30. running, it prints some messages telling which features it is
  31. checking for.
  32. 2. Type `make' to compile the package. (Add e.g. `-j8` to run up to 8
  33. simultanerous compiler processes to speed this up.)
  34. 3. Optionally, type `make check' to run any self-tests that come with
  35. the package.
  36. 4. Type `make install' to install the programs and any data files and
  37. documentation.
  38. 5. You can remove the program binaries and object files from the
  39. source code directory by typing `make clean'. To also remove the
  40. files that `configure' created (so you can compile the package for
  41. a different kind of computer), type `make distclean'. There is
  42. also a `make maintainer-clean' target, but that is intended mainly
  43. for the package's developers. If you use it, you may have to get
  44. all sorts of other programs in order to regenerate files that came
  45. with the distribution.
  46. CMake build
  47. -----------
  48. With CMake you can generate a build setup in your choice of build
  49. system. The one I'm most familiar with is `make`.
  50. Like the native build, the CMake build needs the libpq library and headers
  51. installed. But in addition, it also needs the `pg_type.h` header installed.
  52. On some systems this will be in one of the `postgresql-server-dev-*` packages.
  53. That extra header is just to allow CMake to detect that you have a PostgreSQL
  54. development setup installed. The build shouldn't actually need the file
  55. otherwise, so if you can't find the file, it may be enough to create an empty
  56. file in the right place.
  57. The CMake build works like:
  58. 1. Go into the directory where you would like to build the library and
  59. its intermediate files. This may be the source directory.
  60. 2. Enter `cmake <sourcedir>`, where `<sourcedir>` is the location of
  61. the libpqxx source code. This generates the build configuration.
  62. 3. Type `make' to compile the package. (Add e.g. `-j8` to run up to 8
  63. simultanerous compiler processes to speed this up.)
  64. Compilers and Options
  65. =====================
  66. Some systems require unusual options for compilation or linking that
  67. the `configure' script does not know about. You can give `configure'
  68. initial values for variables by setting them in the environment, or by
  69. adding them to the `configure` command line:
  70. ./configure CXX='clang++' CXXFLAGS=-O3 LIBS=-lposix
  71. Compiling For Multiple Architectures
  72. ====================================
  73. You can compile the package for more than one kind of computer at the
  74. same time, by placing the object files for each architecture in their
  75. own directory. To do this, you must use a version of `make' that
  76. supports the `VPATH' variable, such as GNU `make'. `cd' to the
  77. directory where you want the object files and executables to go and run
  78. the `configure' script. `configure' automatically checks for the
  79. source code in the directory that `configure' is in and in `..'.
  80. If you have to use a `make' that does not supports the `VPATH'
  81. variable, you have to compile the package for one architecture at a time
  82. in the source code directory. After you have installed the package for
  83. one architecture, use `make distclean' before reconfiguring for another
  84. architecture.
  85. Installation Names
  86. ==================
  87. By default, `make install' will install the package's files in
  88. `/usr/local/bin', `/usr/local/man', etc. You can specify an
  89. installation prefix other than `/usr/local' by giving `configure' the
  90. option `--prefix=PATH'.
  91. You can specify separate installation prefixes for
  92. architecture-specific files and architecture-independent files. If you
  93. give `configure' the option `--exec-prefix=PATH', the package will use
  94. PATH as the prefix for installing programs and libraries.
  95. Documentation and other data files will still use the regular prefix.
  96. In addition, if you use an unusual directory layout you can give
  97. options like `--bindir=PATH' to specify different values for particular
  98. kinds of files. Run `configure --help' for a list of the directories
  99. you can set and what kinds of files go in them.
  100. If the package supports it, you can cause programs to be installed
  101. with an extra prefix or suffix on their names by giving `configure' the
  102. option `--program-prefix=PREFIX' or `--program-suffix=SUFFIX'.
  103. Optional Features
  104. =================
  105. Some packages pay attention to `--enable-FEATURE' options to
  106. `configure', where FEATURE indicates an optional part of the package.
  107. They may also pay attention to `--with-PACKAGE' options, where PACKAGE
  108. is something like `gnu-as' or `x' (for the X Window System). The
  109. `README.md' should mention any `--enable-' and `--with-' options that the
  110. package recognizes.
  111. For packages that use the X Window System, `configure' can usually
  112. find the X include and library files automatically, but if it doesn't,
  113. you can use the `configure' options `--x-includes=DIR' and
  114. `--x-libraries=DIR' to specify their locations.
  115. Specifying the System Type
  116. ==========================
  117. There may be some features `configure' can not figure out
  118. automatically, but needs to determine by the type of host the package
  119. will run on. Usually `configure' can figure that out, but if it prints
  120. a message saying it can not guess the host type, give it the
  121. `--host=TYPE' option. TYPE can either be a short name for the system
  122. type, such as `sun4', or a canonical name with three fields:
  123. CPU-COMPANY-SYSTEM
  124. See the file `config.sub' for the possible values of each field. If
  125. `config.sub' isn't included in this package, then this package doesn't
  126. need to know the host type.
  127. If you are building compiler tools for cross-compiling, you can also
  128. use the `--target=TYPE' option to select the type of system they will
  129. produce code for and the `--build=TYPE' option to select the type of
  130. system on which you are compiling the package.
  131. Sharing Defaults
  132. ================
  133. If you want to set default values for `configure' scripts to share,
  134. you can create a site shell script called `config.site' that gives
  135. default values for variables like `CC', `cache_file', and `prefix'.
  136. `configure' looks for `PREFIX/share/config.site' if it exists, then
  137. `PREFIX/etc/config.site' if it exists. Or, you can set the
  138. `CONFIG_SITE' environment variable to the location of the site script.
  139. A warning: not all `configure' scripts look for a site script.
  140. Operation Controls
  141. ==================
  142. `configure' recognizes the following options to control how it
  143. operates.
  144. `--cache-file=FILE'
  145. Use and save the results of the tests in FILE instead of
  146. `./config.cache'. Set FILE to `/dev/null' to disable caching, for
  147. debugging `configure'.
  148. `--help'
  149. Print a summary of the options to `configure', and exit.
  150. `--quiet'
  151. `--silent'
  152. `-q'
  153. Do not print messages saying which checks are being made. To
  154. suppress all normal output, redirect it to `/dev/null' (any error
  155. messages will still be shown).
  156. `--srcdir=DIR'
  157. Look for the package's source code in directory DIR. Usually
  158. `configure' can determine that directory automatically.
  159. `--version'
  160. Print the version of Autoconf used to generate the `configure'
  161. script, and exit.
  162. `configure' also accepts some other, not widely useful, options.