Advertisement
logicmoo

Untitled

Apr 27th, 2017
261
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Prolog 5.54 KB | None | 0 0
  1. oot@ubuntu:/devel/LogicmooDeveloperFramework/swipl-devel# ./configure --help
  2. Usage: configure option ...
  3.  
  4. Options:
  5.  
  6.   --with-world          Build all (default packages)
  7.   --without-<package>   Exclude package.  Notably --without-jpl excludes
  8.                         often troublesome building of the JPL interface.
  9.   --link                Install using symbolic links to the development
  10.                         tree.  This option is intended for developers.
  11.  
  12. This toplevel configure  and  Makefile  ony   deal  with  very  standard
  13. installations. More complicated cases should check INSTALL.notes and use
  14. the configure and makefiles in the src and package directories.
  15. root@ubuntu:/devel/LogicmooDeveloperFramework/swipl-devel# vi configure
  16. root@ubuntu:/devel/LogicmooDeveloperFramework/swipl-devel#  ./src/configure --help
  17. `configure' configures this package to adapt to many kinds of systems.
  18.  
  19. Usage: ./src/configure [OPTION]... [VAR=VALUE]...
  20.  
  21. To assign environment variables (e.g., CC, CFLAGS...), specify them as
  22. VAR=VALUE.  See below for descriptions of some of the useful variables.
  23.  
  24. Defaults for the options are specified in brackets.
  25.  
  26. Configuration:
  27.  -h, --help              display this help and exit
  28.      --help=short        display options specific to this package
  29.      --help=recursive    display the short help of all the included packages
  30.  -V, --version           display version information and exit
  31.  -q, --quiet, --silent   do not print `checking ...' messages
  32.       --cache-file=FILE   cache test results in FILE [disabled]
  33.   -C, --config-cache      alias for `--cache-file=config.cache'
  34.  -n, --no-create         do not create output files
  35.      --srcdir=DIR        find the sources in DIR [configure dir or `..']
  36.  
  37. Installation directories:
  38.   --prefix=PREFIX         install architecture-independent files in PREFIX
  39.                           [/usr/local]
  40.   --exec-prefix=EPREFIX   install architecture-dependent files in EPREFIX
  41.                           [PREFIX]
  42.  
  43. By default, `make install' will install all the files in
  44. `/usr/local/bin', `/usr/local/lib' etc.  You can specify
  45. an installation prefix other than `/usr/local' using `--prefix',
  46. for instance `--prefix=$HOME'.
  47.  
  48. For better control, use the options below.
  49.  
  50. Fine tuning of the installation directories:
  51.   --bindir=DIR            user executables [EPREFIX/bin]
  52.   --sbindir=DIR           system admin executables [EPREFIX/sbin]
  53.   --libexecdir=DIR        program executables [EPREFIX/libexec]
  54.   --sysconfdir=DIR        read-only single-machine data [PREFIX/etc]
  55.   --sharedstatedir=DIR    modifiable architecture-independent data [PREFIX/com]
  56.   --localstatedir=DIR     modifiable single-machine data [PREFIX/var]
  57.   --runstatedir=DIR       modifiable per-process data [LOCALSTATEDIR/run]
  58.   --libdir=DIR            object code libraries [EPREFIX/lib]
  59.   --includedir=DIR        C header files [PREFIX/include]
  60.   --oldincludedir=DIR     C header files for non-gcc [/usr/include]
  61.   --datarootdir=DIR       read-only arch.-independent data root [PREFIX/share]
  62.   --datadir=DIR           read-only architecture-independent data [DATAROOTDIR]
  63.   --infodir=DIR           info documentation [DATAROOTDIR/info]
  64.   --localedir=DIR         locale-dependent data [DATAROOTDIR/locale]
  65.   --mandir=DIR            man documentation [DATAROOTDIR/man]
  66.   --docdir=DIR            documentation root [DATAROOTDIR/doc/PACKAGE]
  67.   --htmldir=DIR           html documentation [DOCDIR]
  68.   --dvidir=DIR            dvi documentation [DOCDIR]
  69.   --pdfdir=DIR            pdf documentation [DOCDIR]
  70.   --psdir=DIR             ps documentation [DOCDIR]
  71.  
  72. System types:
  73.   --build=BUILD     configure for building on BUILD [guessed]
  74.   --host=HOST       cross-compile to build programs to run on HOST [BUILD]
  75.  
  76. Optional Features:
  77.   --disable-option-checking  ignore unrecognized --enable/--with options
  78.   --disable-FEATURE       do not include FEATURE (same as --enable-FEATURE=no)
  79.   --enable-FEATURE[=ARG]  include FEATURE [ARG=yes]
  80.   --disable-mt                Disable multi-threading
  81.   --enable-shared         Prolog kernel as shared obj
  82.   --disable-static        Do not install static library
  83.   --disable-gmp           Disable Multi-precision arithmetic
  84.   --enable-dmalloc        Enable DMALLOC debugging
  85.   --enable-useprofile     GCC: recompile with profile
  86.   --disable-libdirversion       Do not version installation dir
  87.   --disable-largefile     omit support for large files
  88.   --disable-custom-flags  Do not add custom build optimization flags
  89.  
  90. Optional Packages:
  91.   --with-PACKAGE[=ARG]    use PACKAGE [ARG=yes]
  92.   --without-PACKAGE       do not use PACKAGE (same as --with-PACKAGE=no)
  93.   --without-gpl           Disable GPL components
  94.   --without-lgpl                  Disable LGPL components
  95.  
  96. Some influential environment variables:
  97.   CC          C compiler command
  98.   CFLAGS      C compiler flags
  99.   LDFLAGS     linker flags, e.g. -L<lib dir> if you have libraries in a
  100.               nonstandard directory <lib dir>
  101.   LIBS        libraries to pass to the linker, e.g. -l<library>
  102.   CPPFLAGS    (Objective) C/C++ preprocessor flags, e.g. -I<include dir> if
  103.               you have headers in a nonstandard directory <include dir>
  104.   CXX         C++ compiler command
  105.   CXXFLAGS    C++ compiler flags
  106.   CC_FOR_BUILD
  107.               build system C compiler
  108.   CPP         C preprocessor
  109.  
  110. Use these variables to override the choices made by `configure' or to help
  111. it to find libraries and programs with nonstandard names/locations.
  112.  
  113. Report bugs to the package provider.
  114. root@ubuntu:/devel/LogicmooDeveloperFramework/swipl-devel#
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement