Merge pull request #9898 from haskell/mergify/bp/3.12/pr-9865
[cabal.git] / doc / setup-commands.rst
blob20bdafabfae5a702aa1ecb829262c989dfbde306
1 .. _setup-commands:
3 Setup.hs Commands
4 =================
6 .. highlight:: console
8 GHC provides the commands ``runhaskell`` and ``runghc`` (they are equivalent)
9 to allow you to run Haskell programs without first having to compile them
10 (scripts). The low-level Cabal interface is implemented using ``Setup.hs``
11 scripts. You should prefer using higher level interface provided by nix-style
12 builds. However, the documentation of the low level interface below may be helpful
13 to high level interface users as well, because it delves into internal details
14 common to both and omitted elsewhere.
18     $ runhaskell Setup.hs [command] [option...]
20 For the summary of the ``Setup.hs`` script's command syntax, run:
24     $ runhaskell Setup.hs --help
26 Building and installing a system package
27 ----------------------------------------
31     $ runhaskell Setup.hs configure --ghc
32     $ runhaskell Setup.hs build
33     $ runhaskell Setup.hs install
35 The first line readies the system to build the tool using GHC; for
36 example, it checks that GHC exists on the system. The second line
37 performs the actual building, while the last both copies the build
38 results to some permanent place and registers the package with GHC.
40 .. note ::
42     Global installing of packages is not recommended.
43     The :ref:`nix-style-builds` is the preferred way of building and installing
44     packages.
46 Creating a binary package
47 -------------------------
49 When creating binary packages (e.g. for Red Hat or Debian) one needs to
50 create a tarball that can be sent to another system for unpacking in the
51 root directory:
55     $ runhaskell Setup.hs configure --prefix=/usr
56     $ runhaskell Setup.hs build
57     $ runhaskell Setup.hs copy --destdir=/tmp/mypkg
58     $ tar -czf mypkg.tar.gz /tmp/mypkg/
60 If the package contains a library, you need two additional steps:
64     $ runhaskell Setup.hs register --gen-script
65     $ runhaskell Setup.hs unregister --gen-script
67 This creates shell scripts ``register.sh`` and ``unregister.sh``, which
68 must also be sent to the target system. After unpacking there, the
69 package must be registered by running the ``register.sh`` script. The
70 ``unregister.sh`` script would be used in the uninstall procedure of the
71 package. Similar steps may be used for creating binary packages for
72 Windows.
74 The following options are understood by all commands:
76 .. program:: setup
78 .. option:: --help, -h or -?
80     List the available options for the command.
82 .. option:: --verbose=n or -v n
84     Set the verbosity level (0-3). The normal level is 1; a missing *n*
85     defaults to 2.
87     There is also an extended version of this command which can be
88     used to fine-tune the verbosity of output.  It takes the
89     form ``[silent|normal|verbose|debug]``\ *flags*, where *flags*
90     is a list of ``+`` flags which toggle various aspects of
91     output.  At the moment, only ``+callsite`` and ``+callstack``
92     are supported, which respectively toggle call site and call
93     stack printing (these are only supported if Cabal
94     is built with a sufficiently recent GHC.)
96 The various commands and the additional options they support are
97 described below. In the simple build infrastructure, any other options
98 will be reported as errors.
100 .. _setup-configure:
102 runhaskell Setup.hs configure
103 -----------------------------
105 .. program:: runhaskell Setup.hs configure
107 Prepare to build the package. Typically, this step checks that the
108 target platform is capable of building the package, and discovers
109 platform-specific features that are needed during the build.
111 The user may also adjust the behaviour of later stages using the options
112 listed in the following subsections. In the simple build infrastructure,
113 the values supplied via these options are recorded in a private file
114 read by later stages.
116 If a user-supplied ``configure`` script is run (see the section on
117 :ref:`system-dependent parameters` or
118 on :ref:`more-complex-packages`), it is
119 passed the :option:`--with-hc-pkg`, :option:`--prefix`, :option:`--bindir`,
120 :option:`--libdir`, :option:`--dynlibdir`, :option:`--datadir`, :option:`--libexecdir` and
121 :option:`--sysconfdir` options. In addition the value of the
122 :option:`--with-compiler` option is passed in a :option:`--with-hc-pkg` option
123 and all options specified with :option:`--configure-option` are passed on.
125 .. note::
126    `GNU autoconf places restrictions on paths, including the directory
127    that the package is built from.
128    <https://www.gnu.org/software/autoconf/manual/autoconf.html#File-System-Conventions>`_
129    The errors produced when this happens can be obscure; Cabal attempts to
130    detect and warn in this situation, but it is not perfect.
132 In Cabal 2.0, support for a single positional argument was added to
133 ``runhaskell Setup.hs configure`` This makes Cabal configure the specific component to
134 be configured. Specified names can be qualified with ``lib:`` or
135 ``exe:`` in case just a name is ambiguous (as would be the case for a
136 package named ``p`` which has a library and an executable named ``p``.)
137 This has the following effects:
139 -  Subsequent invocations of ``cabal build``, ``register``, etc. operate only
140    on the configured component.
142 -  Cabal requires all "internal" dependencies (e.g., an executable
143    depending on a library defined in the same package) must be found in
144    the set of databases via :option:`--package-db` (and related flags): these
145    dependencies are assumed to be up-to-date. A dependency can be
146    explicitly specified using :option:`--dependency` simply by giving the name
147    of the sublibrary; e.g., the dependency for a sublibrary
148    named ``foo`` is given as
149    ``--dependency=Lib:foo=foo-0.1-abc``.
151 -  Only the dependencies needed for the requested component are
152    required. Similarly, when :option:`--exact-configuration` is specified,
153    it's only necessary to specify :option:`--dependency` for the component.
154    (As mentioned previously, you *must* specify internal dependencies as
155    well.)
157 -  Internal ``build-tool-depends`` and ``build-tools`` dependencies are expected
158    to be in the ``PATH`` upon subsequent invocations of ``setup``.
160 Full details can be found in the `Componentized Cabal
161 proposal <https://github.com/ezyang/ghc-proposals/blob/master/proposals/0000-componentized-cabal.rst>`__.
163 Programs used for building
164 ^^^^^^^^^^^^^^^^^^^^^^^^^^
166 The following options govern the programs used to process the source
167 files of a package:
169 .. option:: -g, --ghc
170             --ghcjs
171             --uhc
172             --haskell-suite
174     Specify which Haskell implementation to use to build the package. At
175     most one of these flags may be given. If none is given, the
176     implementation under which the setup script was compiled or
177     interpreted is used.
179 .. option:: -w PATH or -wPATH, --with-compiler=PATH
181     Specify the path to a particular compiler. If given, this must match
182     the implementation selected above. The default is to search for the
183     usual name of the selected implementation.
185     This flag also sets the default value of the :option:`--with-hc-pkg`
186     option to the package tool for this compiler. Check the output of
187     ``runhaskell Setup.hs configure -v`` to ensure that it finds the right package
188     tool (or use :option:`--with-hc-pkg` explicitly).
190 .. option:: --with-hc-pkg=PATH
192     Specify the path to the package tool, e.g. ``ghc-pkg``. The package
193     tool must be compatible with the compiler specified by
194     :option:`--with-compiler`. If this option is omitted, the default value is
195     determined from the compiler selected.
197 .. option:: --with-PROG=PATH
199     Specify the path to the program *prog*. Any program known to Cabal
200     can be used in place of *prog*. It can either be a fully path or the
201     name of a program that can be found on the program search path. For
202     example: ``--with-ghc=ghc-6.6.1`` or
203     ``--with-cpphs=/usr/local/bin/cpphs``. The full list of accepted
204     programs is not enumerated in this user guide. Rather, run
205     ``cabal install --help`` to view the list.
207 .. option:: --PROG-options=OPTS
209     Specify additional options to the program *prog*. Any program known
210     to Cabal can be used in place of *prog*. For example:
211     ``--alex-options="--template=mytemplatedir/"``. The *options* is
212     split into program options based on spaces. Any options containing
213     embedded spaced need to be quoted, for example
214     ``--foo-options='--bar="C:\Program File\Bar"'``. As an alternative
215     that takes only one option at a time but avoids the need to quote,
216     use :option:`--PROG-option` instead.
218 .. option:: --PROG-option=OPT
220     Specify a single additional option to the program *prog*. For
221     passing an option that contains embedded spaces, such as a file name
222     with embedded spaces, using this rather than :option:`--PROG-options`
223     means you do not need an additional level of quoting. Of course if you
224     are using a command shell you may still need to quote, for example
225     ``--foo-options="--bar=C:\Program File\Bar"``.
227 All of the options passed with either :option:`--PROG-options`
228 or :option:`--PROG-option` are passed in the order they were
229 specified on the configure command line.
231 Installation paths
232 ^^^^^^^^^^^^^^^^^^
234 The following options govern the location of installed files from a
235 package:
237 .. option:: --prefix=DIR
239     The root of the installation. For example for a global install you
240     might use ``/usr/local`` on a Unix system, or ``C:\Program Files``
241     on a Windows system. The other installation paths are usually
242     subdirectories of *prefix*, but they don't have to be.
244     In the simple build system, *dir* may contain the following path
245     variables: ``$pkgid``, ``$pkg``, ``$version``, ``$compiler``,
246     ``$os``, ``$arch``, ``$abi``, ``$abitag``
248 .. option:: --bindir=DIR
250     Executables that the user might invoke are installed here.
252     In the simple build system, *dir* may contain the following path
253     variables: ``$prefix``, ``$pkgid``, ``$pkg``, ``$version``,
254     ``$compiler``, ``$os``, ``$arch``, ``$abi``, ``$abitag``
256 .. option:: --libdir=DIR
258     Object-code libraries are installed here.
260     In the simple build system, *dir* may contain the following path
261     variables: ``$prefix``, ``$bindir``, ``$pkgid``, ``$pkg``,
262     ``$version``, ``$compiler``, ``$os``, ``$arch``, ``$abi``,
263     ``$abitag``
265 .. option:: --dynlibdir=DIR
267     Dynamic libraries are installed here.
269     By default, this is set to `$libdir/$abi`, which is usually not equal to
270     `$libdir/$libsubdir`.
272     In the simple build system, *dir* may contain the following path
273     variables: ``$prefix``, ``$bindir``, ``$libdir``, ``$pkgid``, ``$pkg``,
274     ``$version``, ``$compiler``, ``$os``, ``$arch``, ``$abi``,
275     ``$abitag``
277 .. option:: --libexecdir=DIR
279     Executables that are not expected to be invoked directly by the user
280     are installed here.
282     In the simple build system, *dir* may contain the following path
283     variables: ``$prefix``, ``$bindir``, ``$libdir``, ``$libsubdir``,
284     ``$pkgid``, ``$pkg``, ``$version``, ``$compiler``, ``$os``,
285     ``$arch``, ``$abi``, ``$abitag``
287 .. option:: --datadir=DIR
289     Architecture-independent data files are installed here.
291     In the simple build system, *dir* may contain the following path
292     variables: ``$prefix``, ``$bindir``, ``$libdir``, ``$libsubdir``,
293     ``$pkgid``, ``$pkg``, ``$version``, ``$compiler``, ``$os``,
294     ``$arch``, ``$abi``, ``$abitag``
296 .. option:: --sysconfdir=DIR
298     Installation directory for the configuration files.
300     In the simple build system, *dir* may contain the following path
301     variables: ``$prefix``, ``$bindir``, ``$libdir``, ``$libsubdir``,
302     ``$pkgid``, ``$pkg``, ``$version``, ``$compiler``, ``$os``,
303     ``$arch``, ``$abi``, ``$abitag``
305 In addition the simple build system supports the following installation
306 path options:
308 .. option:: --libsubdir=DIR
310     A subdirectory of *libdir* in which libraries are actually installed. For
311     example, in the simple build system on Unix, the default *libdir* is
312     ``/usr/local/lib``, and *libsubdir* contains the compiler ABI and package
313     identifier,
314     e.g. ``x86_64-linux-ghc-8.0.2/mypkg-0.1.0-IxQNmCA7qrSEQNkoHSF7A``, so
315     libraries would be installed in
316     ``/usr/local/lib/x86_64-linux-ghc-8.0.2/mypkg-0.1.0-IxQNmCA7qrSEQNkoHSF7A/``.
318     *dir* may contain the following path variables: ``$pkgid``,
319     ``$pkg``, ``$version``, ``$compiler``, ``$os``, ``$arch``, ``$abi``,
320     ``$abitag``
322 .. option:: --libexecsubdir=DIR
324     A subdirectory of *libexecdir* in which private executables are
325     installed. For example, in the simple build system on Unix, the default
326     *libexecdir* is ``/usr/local/libexec``, and *libsubdir* is
327     ``x86_64-linux-ghc-8.0.2/mypkg-0.1.0``, so private executables would be
328     installed in ``/usr/local/libexec/x86_64-linux-ghc-8.0.2/mypkg-0.1.0/``
330     *dir* may contain the following path variables: ``$pkgid``,
331     ``$pkg``, ``$version``, ``$compiler``, ``$os``, ``$arch``, ``$abi``,
332     ``$abitag``
334 .. option:: --datasubdir=DIR
336     A subdirectory of *datadir* in which data files are actually
337     installed.
339     *dir* may contain the following path variables: ``$pkgid``,
340     ``$pkg``, ``$version``, ``$compiler``, ``$os``, ``$arch``, ``$abi``,
341     ``$abitag``
343 .. option:: --docdir=DIR
345     Documentation files are installed relative to this directory.
347     *dir* may contain the following path variables: ``$prefix``,
348     ``$bindir``, ``$libdir``, ``$libsubdir``, ``$datadir``,
349     ``$datasubdir``, ``$pkgid``, ``$pkg``, ``$version``, ``$compiler``,
350     ``$os``, ``$arch``, ``$abi``, ``$abitag``
352 .. option:: --htmldir=DIR
354     HTML documentation files are installed relative to this directory.
356     *dir* may contain the following path variables: ``$prefix``,
357     ``$bindir``, ``$libdir``, ``$libsubdir``, ``$datadir``,
358     ``$datasubdir``, ``$docdir``, ``$pkgid``, ``$pkg``, ``$version``,
359     ``$compiler``, ``$os``, ``$arch``, ``$abi``, ``$abitag``
361 .. option:: --program-prefix=PREFIX
363     Prepend *prefix* to installed program names.
365     *prefix* may contain the following path variables: ``$pkgid``,
366     ``$pkg``, ``$version``, ``$compiler``, ``$os``, ``$arch``, ``$abi``,
367     ``$abitag``
369 .. option:: --program-suffix=SUFFIX
371     Append *suffix* to installed program names. The most obvious use for
372     this is to append the program's version number to make it possible
373     to install several versions of a program at once:
374     ``--program-suffix='$version'``.
376     *suffix* may contain the following path variables: ``$pkgid``,
377     ``$pkg``, ``$version``, ``$compiler``, ``$os``, ``$arch``, ``$abi``,
378     ``$abitag``
380 Path variables in the simple build system
381 """""""""""""""""""""""""""""""""""""""""
383 For the simple build system, there are a number of variables that can be
384 used when specifying installation paths. The defaults are also specified
385 in terms of these variables. A number of the variables are actually for
386 other paths, like ``$prefix``. This allows paths to be specified
387 relative to each other rather than as absolute paths, which is important
388 for building relocatable packages (see :ref:`prefix independence`).
390 $prefix
391     The path variable that stands for the root of the installation. For
392     an installation to be relocatable, all other installation paths must
393     be relative to the ``$prefix`` variable.
394 $bindir
395     The path variable that expands to the path given by the :option:`--bindir`
396     configure option (or the default).
397 $libdir
398     As above but for :option:`--libdir`
399 $libsubdir
400     As above but for :option:`--libsubdir`
401 $dynlibdir
402     As above but for :option:`--dynlibdir`
403 $datadir
404     As above but for :option:`--datadir`
405 $datasubdir
406     As above but for :option:`--datasubdir`
407 $docdir
408     As above but for :option:`--docdir`
409 $pkgid
410     The name and version of the package, e.g. ``mypkg-0.2``
411 $pkg
412     The name of the package, e.g. ``mypkg``
413 $version
414     The version of the package, e.g. ``0.2``
415 $compiler
416     The compiler being used to build the package, e.g. ``ghc-6.6.1``
418     The operating system of the computer being used to build the
419     package, e.g. ``linux``, ``windows``, ``osx``, ``freebsd`` or
420     ``solaris``
421 $arch
422     The architecture of the computer being used to build the package,
423     e.g. ``i386``, ``x86_64``, ``ppc`` or ``sparc``
424 $abitag
425     An optional tag that a compiler can use for telling incompatible
426     ABI's on the same architecture apart. GHCJS encodes the underlying
427     GHC version in the ABI tag.
428 $abi
429     A shortcut for getting a path that completely identifies the
430     platform in terms of binary compatibility. Expands to the same value
431     as ``$arch-$os-compiler-$abitag`` if the compiler uses an abi tag,
432     ``$arch-$os-$compiler`` if it doesn't.
434 Paths in the simple build system
435 """"""""""""""""""""""""""""""""
437 For the simple build system, the following defaults apply:
439 .. list-table:: Default installation paths
441     * - Option
442       - Unix Default
443       - Windows Default
444     * - :option:`--prefix` (global)
445       - ``/usr/local``
446       - ``%PROGRAMFILES%\Haskell``
447     * - :option:`--prefix` (per-user)
448       - ``$HOME/.cabal``
449       - ``%APPDATA%\cabal``
450     * - :option:`--bindir`
451       - ``$prefix/bin``
452       - ``$prefix\bin``
453     * - :option:`--libdir`
454       - ``$prefix/lib``
455       - ``$prefix``
456     * - :option:`--libsubdir` (others)
457       - ``$pkgid/$compiler``
458       - ``$pkgid\$compiler``
459     * - :option:`--dynlibdir`
460       - ``$libdir/$abi``
461       - ``$libdir\$abi``
462     * - :option:`--libexecdir`
463       - ``$prefix/libexec``
464       - ``$prefix\$pkgid``
465     * - :option:`--datadir` (executable)
466       - ``$prefix/share``
467       - ``$prefix``
468     * - :option:`--datadir` (library)
469       - ``$prefix/share``
470       - ``%PROGRAMFILES%\Haskell``
471     * - :option:`--datasubdir`
472       - ``$pkgid``
473       - ``$pkgid``
474     * - :option:`--docdir`
475       - ``$datadir/doc/$pkgid``
476       - ``$prefix\doc\$pkgid``
477     * - :option:`--sysconfdir`
478       - ``$prefix/etc``
479       - ``$prefix\etc``
480     * - :option:`--htmldir`
481       - ``$docdir/html``
482       - ``$docdir\html``
483     * - :option:`--program-prefix`
484       - (empty)
485       - (empty)
486     * - :option:`--program-suffix`
487       - (empty)
488       - (empty)
490 .. _prefix independence:
492 Prefix independence
493 """""""""""""""""""
495 On Windows it is possible to obtain the pathname of the running program.
496 This means that we can construct an installable executable package that
497 is independent of its absolute install location. The executable can find
498 its auxiliary files by finding its own path and knowing the location of
499 the other files relative to ``$bindir``. Prefix independence is
500 particularly useful: it means the user can choose the install location
501 (i.e. the value of ``$prefix``) at install-time, rather than having to
502 bake the path into the binary when it is built.
504 In order to achieve this, we require that for an executable on Windows,
505 all of ``$bindir``, ``$libdir``, ``$dynlibdir``, ``$datadir`` and ``$libexecdir`` begin
506 with ``$prefix``. If this is not the case then the compiled executable
507 will have baked-in all absolute paths.
509 The application need do nothing special to achieve prefix independence.
510 If it finds any files using ``getDataFileName`` and the :ref:`other functions
511 provided for the purpose <accessing-data-files>`,
512 the files will be accessed relative to the location of the current
513 executable.
515 A library cannot (currently) be prefix independent, because it will be
516 linked into an executable whose file system location bears no relation
517 to the library package.
519 .. _controlling flag assignments:
521 Controlling Flag Assignments
522 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
524 Flag assignments (see :ref:`resolution-of-conditions-and-flags`)
525 can be controlled with the following command line options.
527 .. option:: -f flagname or -f -flagname
529     Force the specified flag to ``true`` or ``false`` (if preceded with
530     a ``-``). Later specifications for the same flags will override
531     earlier, i.e., specifying ``-fdebug -f-debug`` is equivalent to
532     ``-f-debug``
534 .. option:: --flags=flagspecs
536     Same as ``-f``, but allows specifying multiple flag assignments at
537     once. The parameter is a space-separated list of flag names (to
538     force a flag to ``true``), optionally preceded by a ``-`` (to force
539     a flag to ``false``). For example,
540     ``--flags="debug -feature1 feature2"`` is equivalent to
541     ``-fdebug -f-feature1 -ffeature2``.
543 Building Test Suites
544 ^^^^^^^^^^^^^^^^^^^^
546 .. option:: --enable-tests
548     Build the test suites defined in the package description file during
549     the ``build`` stage. Check for dependencies required by the test
550     suites. If the package is configured with this option, it will be
551     possible to run the test suites with the ``test`` command after the
552     package is built.
554 .. option:: --disable-tests
556     (default) Do not build any test suites during the ``build`` stage.
557     Do not check for dependencies required only by the test suites. It
558     will not be possible to invoke the ``test`` command without
559     reconfiguring the package.
561 .. option:: --enable-coverage
563     Build libraries and executables (including test suites) with Haskell
564     Program Coverage enabled. Running the test suites will automatically
565     generate coverage reports with HPC.
567 .. option:: --disable-coverage
569     (default) Do not enable Haskell Program Coverage.
571 Miscellaneous options
572 ^^^^^^^^^^^^^^^^^^^^^
574 .. option:: --user
576     Does a per-user installation. This changes the `default installation
577     prefix <#paths-in-the-simple-build-system>`__. It also allow
578     dependencies to be satisfied by the user's package database, in
579     addition to the global database. This also implies a default of
580     ``--user`` for any subsequent ``install`` command, as packages
581     registered in the global database should not depend on packages
582     registered in a user's database.
584 .. option:: --global
586     (default) Does a global installation. In this case package
587     dependencies must be satisfied by the global package database. All
588     packages in the user's package database will be ignored. Typically
589     the final installation step will require administrative privileges.
591 .. option:: --package-db=DB
593     Allows package dependencies to be satisfied from this additional
594     package database *db* in addition to the global package database.
595     All packages in the user's package database will be ignored. The
596     interpretation of *db* is implementation-specific. Typically it will
597     be a file or directory. Not all implementations support arbitrary
598     package databases.
600     This pushes an extra db onto the db stack. The :option:`--global` and
601     :option:`--user` mode switches add the respective [Global] and [Global,
602     User] dbs to the initial stack. There is a compiler-implementation
603     constraint that the global db must appear first in the stack, and if
604     the user one appears at all, it must appear immediately after the
605     global db.
607     To reset the stack, use ``--package-db=clear``.
609 .. option:: --ipid=IPID
611     Specifies the *installed package identifier* of the package to be
612     built; this identifier is passed on to GHC and serves as the basis
613     for linker symbols and the ``id`` field in a ``ghc-pkg``
614     registration. When a package has multiple components, the actual
615     component identifiers are derived off of this identifier. E.g., a
616     sublibrary ``foo`` from package ``p-0.1-abcd`` will get the
617     identifier ``p-0.1-abcd-foo``.
619 .. option:: --cid=CID
621     Specifies the *component identifier* of the component being built;
622     this is only valid if you are configuring a single component.
624 .. option:: -O[n], --enable-optimization[=n]
626     (default) Build with optimization flags (if available). This is
627     appropriate for production use, taking more time to build faster
628     libraries and programs.
630     The optional *n* value is the optimisation level. Some compilers
631     support multiple optimisation levels. The range is 0 to 2. Level 0
632     is equivalent to :option:`--disable-optimization`, level 1 is the
633     default if no *n* parameter is given. Level 2 is higher optimisation
634     if the compiler supports it. Level 2 is likely to lead to longer
635     compile times and bigger generated code.
637     When optimizations are enabled, Cabal passes ``-O2`` to the C compiler.
639 .. option:: --disable-optimization
641     Build without optimization. This is suited for development: building
642     will be quicker, but the resulting library or programs will be
643     slower.
645 .. option:: --enable-profiling
647     Build libraries and executables with profiling enabled (for
648     compilers that support profiling as a separate mode). For this to
649     work, all libraries used by this package must also have been built
650     with profiling support. For libraries this involves building an
651     additional instance of the library in addition to the normal
652     non-profiling instance. For executables it changes the single
653     executable to be built in profiling mode.
655     This flag covers both libraries and executables, but can be
656     overridden by the :option:`--enable-library-profiling` flag.
658     See also the :option:`--profiling-detail` flag below.
660 .. option:: --disable-profiling
662     (default) Do not enable profiling in generated libraries and
663     executables.
665 .. option:: -p, --enable-library-profiling
667     As with :option:`--enable-profiling` above, but it applies only for
668     libraries. So this generates an additional profiling instance of the
669     library in addition to the normal non-profiling instance.
671     The :option:`--enable-profiling` flag controls the profiling mode for both
672     libraries and executables, but if different modes are desired for
673     libraries versus executables then use :option:`--enable-library-profiling`
674     as well.
676 .. option:: --disable-library-profiling
678     (default) Do not generate an additional profiling version of the library.
680 .. option:: --profiling-detail=level
682     Some compilers that support profiling, notably GHC, can allocate
683     costs to different parts of the program and there are different
684     levels of granularity or detail with which this can be done. In
685     particular for GHC this concept is called "cost centers", and GHC
686     can automatically add cost centers, and can do so in different ways.
688     This flag covers both libraries and executables, but can be
689     overridden by the :option:`--library-profiling-detail` flag.
691     Currently this setting is ignored for compilers other than GHC. The
692     levels that cabal currently supports are:
694     default
695         For GHC this uses ``exported-functions`` for libraries and
696         ``toplevel-functions`` for executables.
697     none
698         No costs will be assigned to any code within this component.
699     exported-functions
700         Costs will be assigned at the granularity of all top level
701         functions exported from each module. In GHC specifically, this
702         is for non-inline functions.
703     toplevel-functions
704         Costs will be assigned at the granularity of all top level
705         functions in each module, whether they are exported from the
706         module or not. In GHC specifically, this is for non-inline
707         functions.
708     all-functions
709         Costs will be assigned at the granularity of all functions in
710         each module, whether top level or local. In GHC specifically,
711         this is for non-inline toplevel or where-bound functions or
712         values.
713     late-toplevel
714         Like top-level but costs will be assigned to top level definitions after
715         optimization. This lowers profiling overhead massively while giving similar
716         levels of detail as toplevle-functions. However it means functions introduced
717         by GHC during optimization will show up in profiles as well.
718         Corresponds to ``-fprof-late`` if supported and ``-fprof-auto-top`` otherwise.
719     late
720         Currently an alias for late-toplevel
722     This flag is new in Cabal-1.24. Prior versions used the equivalent
723     of ``none`` above.
725 .. option:: --library-profiling-detail=level
727     As with :option:`--profiling-detail` above, but it applies only for
728     libraries.
730     The level for both libraries and executables is set by the
731     :option:`--profiling-detail` flag, but if different levels are desired
732     for libraries versus executables then use
733     :option:`--library-profiling-detail` as well.
735 .. option:: --enable-library-vanilla
737     (default) Build ordinary libraries (as opposed to profiling
738     libraries). This is independent of the
739     :option:`--enable-library-profiling` option. If you enable both, you get
740     both.
742 .. option:: --disable-library-vanilla
744     Do not build ordinary libraries. This is useful in conjunction with
745     :option:`--enable-library-profiling` to build only profiling libraries,
746     rather than profiling and ordinary libraries.
748 .. option:: --enable-library-for-ghci
750     (default) Build libraries suitable for use with GHCi.
752 .. option:: --disable-library-for-ghci
754     Not all platforms support GHCi and indeed on some platforms, trying
755     to build GHCi libs fails. In such cases this flag can be used as a
756     workaround.
758 .. option:: --enable-split-objs
760     Use the GHC ``-split-objs`` feature when building the library. This
761     reduces the final size of the executables that use the library by
762     allowing them to link with only the bits that they use rather than
763     the entire library. The downside is that building the library takes
764     longer and uses considerably more memory.
766 .. option:: --disable-split-objs
768     (default) Do not use the GHC ``-split-objs`` feature. This makes
769     building the library quicker but the final executables that use the
770     library will be larger.
772 .. option:: --enable-executable-stripping
774     (default) When installing binary executable programs, run the
775     ``strip`` program on the binary. This can considerably reduce the
776     size of the executable binary file. It does this by removing
777     debugging information and symbols. While such extra information is
778     useful for debugging C programs with traditional debuggers it is
779     rarely helpful for debugging binaries produced by Haskell compilers.
781     Not all Haskell implementations generate native binaries. For such
782     implementations this option has no effect.
784 .. option:: --disable-executable-stripping
786     Do not strip binary executables during installation. You might want
787     to use this option if you need to debug a program using gdb, for
788     example if you want to debug the C parts of a program containing
789     both Haskell and C code. Another reason is if your are building a
790     package for a system which has a policy of managing the stripping
791     itself (such as some Linux distributions).
793 .. option:: --enable-shared
795     Build shared library. This implies a separate compiler run to
796     generate position independent code as required on most platforms.
798 .. option:: --disable-shared
800     (default) Do not build shared library.
802 .. option:: --enable-static
804    Build a static library. This passes ``-staticlib`` to GHC (available
805    for iOS, and with 8.4 more platforms).  The result is an archive ``.a``
806    containing all dependent haskell libraries combined.
808 .. option:: --disable-static
810     (default) Do not build a static library.
812 .. option:: --enable-executable-dynamic
814     Link dependent Haskell libraries into executables dynamically.
815     The executable's library dependencies must have been
816     built as shared objects. This implies :option:`--enable-shared`
817     unless :option:`--disable-shared` is explicitly specified.
819 .. option:: --disable-executable-dynamic
821    (default) Link dependent Haskell libraries into executables statically.
822    Non-Haskell (C) libraries are still linked dynamically, including libc,
823    so the result is still not a fully static executable
824    unless :option:`--enable-executable-static` is given.
826 .. option:: --enable-executable-static
828     Build fully static executables.
829     This links all dependent libraries into executables statically,
830     including libc.
832 .. option:: --disable-executable-static
834    (default) Do not build fully static executables.
836 .. option:: --configure-option=str
838     An extra option to an external ``configure`` script, if one is used
839     (see the section on :ref:`system-dependent parameters`).
840     There can be several of these options.
842 .. option:: --extra-include-dirs=PATH
844     An extra directory to search for C header files. You can use this
845     flag multiple times to get a list of directories.
847     You might need to use this flag if you have standard system header
848     files in a non-standard location that is not mentioned in the
849     package's ``.cabal`` file. Using this option has the same effect as
850     appending the directory *dir* to the ``include-dirs`` field in each
851     library and executable in the package's ``.cabal`` file. The
852     advantage of course is that you do not have to modify the package at
853     all. These extra directories will be used while building the package
854     and for libraries it is also saved in the package registration
855     information and used when compiling modules that use the library.
857 .. option:: --extra-lib-dirs=PATH
859     An extra directory to search for system libraries files. You can use
860     this flag multiple times to get a list of directories.
862 .. option:: --extra-framework-dirs=PATH
864     An extra directory to search for frameworks (OS X only). You can use
865     this flag multiple times to get a list of directories.
867     You might need to use this flag if you have standard system
868     libraries in a non-standard location that is not mentioned in the
869     package's ``.cabal`` file. Using this option has the same affect as
870     appending the directory *dir* to the ``extra-lib-dirs`` field in
871     each library and executable in the package's ``.cabal`` file. The
872     advantage of course is that you do not have to modify the package at
873     all. These extra directories will be used while building the package
874     and for libraries it is also saved in the package registration
875     information and used when compiling modules that use the library.
877 .. option:: --dependency[=pkgname=IPID]
879     Specify that a particular dependency should used for a particular
880     package name. In particular, it declares that any reference to
881     *pkgname* in a :pkg-field:`build-depends` should be resolved to
882     *ipid*.
884 .. option:: --promised-dependency[=pkgname=IPID]
886     Very much like ``--dependency`` but the package doesn't need to already
887     be installed. This is useful when attempting to start multiple component
888     sessions with cabal's multi-repl or projects such as Haskell Language Server.
890     Several checks which are enabled for ``--dependency``s are disabled for promised
891     dependencies, so prefer to use ``--dependency`` if you know that the dependency
892     is already installed.
894 .. option:: --exact-configuration
896     This changes Cabal to require every dependency be explicitly
897     specified using :option:`--dependency`, rather than use Cabal's (very
898     simple) dependency solver. This is useful for programmatic use of
899     Cabal's API, where you want to error if you didn't specify enough
900     :option:`--dependency` flags.
903 .. option:: -c CONSTRAINT or -cCONSTRAINT, --constraint=CONSTRAINT
905     Restrict solutions involving a package to given version
906     bounds, flag settings, and other properties.
908     The following considers only install plans where ``bar``,
909     if used, is restricted to version 2.1:
911     ::
913         $ cabal install --constraint="bar == 2.1"
915     The following prevents ``bar`` from being used at all:
917     ::
919         $ cabal install --constraint="bar <0"
921     Version bounds have the same syntax as :pkg-field:`build-depends`.
922     Yet extra pseudo version bounds are available here in addition:
924       - ``installed`` to fix a package to the already installed version.
925         Often useful for GHC-supplied packages in combination with :cfg-field:`allow-newer`,
926         e.g., ``--allow-newer='*:base' --constraint='base installed'``.
928       - ``source`` to fix a package to the local source copy.
930     ::
932         # Require that a version of bar be used that is already installed in
933         # the global package database.
934         $ cabal install --constraint="bar installed"
936         # Require the local source copy of bar to be used.
937         # (Note: By default, if we have a local package we will
938         # automatically use it, so it will generally not be necessary to
939         # specify this.)
940         $ cabal install --constraint="bar source"
942     Further, we can specify flag assignments with ``+FLAG`` and ``-FLAG``
943     or enable test (``test``) and benchmark (``bench``) suites:
945     ::
947         # Require bar to be installed with the foo flag turned on and
948         # the baz flag turned off.
949         $ cabal install --constraint="bar +foo -baz"
951         # Require that bar have test suites and benchmarks enabled.
952         $ cabal install --constraint="bar test" --constraint="bar bench"
954     To specify multiple constraints, you may pass the
955     ``constraint`` option multiple times.
957     By default, constraints only apply to build dependencies
958     (:pkg-field:`build-depends`), build dependencies of build
959     dependencies, and so on. Constraints normally do not apply to
960     dependencies of the ``Setup.hs`` script of any package
961     (:pkg-field:`custom-setup:setup-depends`) nor do they apply to build tools
962     (:pkg-field:`build-tool-depends`) or the dependencies of build
963     tools. To explicitly apply a constraint to a setup or build
964     tool dependency, you can add a qualifier ``setup`` or ``any``
965     to the constraint as follows:
967     ::
969         # Example use of the 'any' qualifier. This constraint
970         # applies to package bar anywhere in the dependency graph.
971         $ cabal install --constraint="any.bar == 1.0"
973     ::
975         # Example uses of 'setup' qualifiers.
977         # This constraint applies to package bar when it is a
978         # dependency of any Setup.hs script.
979         $ cabal install --constraint="setup.bar == 1.0"
981         # This constraint applies to package bar when it is a
982         # dependency of the Setup.hs script of package foo.
983         $ cabal install --constraint="foo:setup.bar == 1.0"
985     ..  TODO: Uncomment this example once we decide on a syntax for 'exe'.
986     ..  # Example use of the 'exe' (executable build tool)
987         # qualifier. This constraint applies to package baz when it
988         # is a dependency of the build tool bar being used to
989         # build package foo.
990         $ cabal install --constraint="foo:bar:exe.baz == 1.0"
992 .. option:: --disable-response-files
994     Enable workaround for older versions of programs such as ``ar`` or
995     ``ld`` that do not support response file arguments (i.e. ``@file``
996     arguments). You may want this flag only if you specify custom ar
997     executable. For system ``ar`` or the one bundled with ``ghc`` on
998     Windows the ``cabal`` should do the right thing and hence should
999     normally not require this flag.
1001 .. _setup-build:
1003 runhaskell Setup.hs build
1004 -------------------------
1006 Perform any preprocessing or compilation needed to make this package
1007 ready for installation.
1009 This command takes the following options:
1011 .. program:: runhaskell Setup.hs build
1013 .. option:: --PROG-options=OPTS, --PROG-option=OPT
1015     These are mostly the same as the `options configure
1016     step <#setup-configure>`__. Unlike the options specified at the
1017     configure step, any program options specified at the build step are
1018     not persistent but are used for that invocation only. The options
1019     specified at the build step are in addition not in replacement of
1020     any options specified at the configure step.
1022 .. _setup-haddock:
1024 runhaskell Setup.hs haddock
1025 ---------------------------
1027 .. program:: runhaskell Setup.hs haddock
1029 Build the documentation for the package using Haddock_.
1030 By default, only the documentation for the exposed modules is generated
1031 (but see the :option:`--executables` and :option:`--internal` flags below).
1033 This command takes the following options:
1035 .. option:: --hoogle
1037     Generate a file ``dist/doc/html/``\ *pkgid*\ ``.txt``, which can be
1038     converted by Hoogle_ into a
1039     database for searching. This is equivalent to running Haddock_
1040     with the ``--hoogle`` flag.
1042 .. option:: --html-location=url
1044     Specify a template for the location of HTML documentation for
1045     prerequisite packages. The substitutions (`see
1046     listing <#paths-in-the-simple-build-system>`__) are applied to the
1047     template to obtain a location for each package, which will be used
1048     by hyperlinks in the generated documentation. For example, the
1049     following command generates links pointing at Hackage_ pages:
1051     ::
1053         $ runhaskell Setup.hs haddock \
1054         --html-location='http://hackage.haskell.org/packages/archive/$pkg/latest/doc/html'
1056     Here the argument is quoted to prevent substitution by the shell. If
1057     this option is omitted, the location for each package is obtained
1058     using the package tool (e.g. ``ghc-pkg``).
1060 .. option:: --executables
1062     Also run Haddock_ for the modules of all the executable programs. By default
1063     Haddock_ is run only on the exported modules.
1065 .. option:: --internal
1067     Run Haddock_ for the all
1068     modules, including unexposed ones, and make
1069     Haddock_ generate documentation
1070     for unexported symbols as well.
1072 .. option:: --css=path
1074     The argument *path* denotes a CSS file, which is passed to
1075     Haddock_ and used to set the
1076     style of the generated documentation. This is only needed to
1077     override the default style that
1078     Haddock_ uses.
1080 .. option:: --hyperlink-source
1082     Generate Haddock_ documentation integrated with HsColour_ . First,
1083     HsColour_ is run to generate colourised code. Then Haddock_ is run to
1084     generate HTML documentation. Each entity shown in the documentation is
1085     linked to its definition in the colourised code.
1087 .. option:: --hscolour-css=path
1089     The argument *path* denotes a CSS file, which is passed to HsColour_ as in
1091     ::
1093         $ runhaskell Setup.hs hscolour --css=*path*
1095 .. _setup-hscolour:
1097 runhaskell Setup.hs hscolour
1098 ----------------------------
1100 Produce colourised code in HTML format using HsColour_. Colourised code for
1101 exported modules is put in ``dist/doc/html/``\ *pkgid*\ ``/src``.
1103 This command takes the following options:
1105 .. program:: runhaskell Setup.hs hscolour
1107 .. option:: --executables
1109     Also run HsColour_ on the sources of all executable programs. Colourised
1110     code is put in ``dist/doc/html/``\ *pkgid*/*executable*\ ``/src``.
1112 .. option:: --css=path
1114     Use the given CSS file for the generated HTML files. The CSS file
1115     defines the colours used to colourise code. Note that this copies
1116     the given CSS file to the directory with the generated HTML files
1117     (renamed to ``hscolour.css``) rather than linking to it.
1119 .. _setup-install:
1121 runhaskell Setup.hs install
1122 ---------------------------
1124 .. program:: runhaskell Setup.hs install
1126 Copy the files into the install locations and (for library packages)
1127 register the package with the compiler, i.e. make the modules it
1128 contains available to programs.
1130 Additionally for GHC the ``extra-compilation-artifacts`` directory is copied if present.
1131 GHC plugins can store extra data in subfolders.
1132 (e.g. *extra-compilation-artifacts/PLUGIN_NAME/HS_MODULE.txt*)
1134 The `install locations <#installation-paths>`__ are determined by
1135 options to `runhaskell Setup.hs configure`_.
1137 This command takes the following options:
1139 .. option:: --global
1141     Register this package in the system-wide database. (This is the
1142     default, unless the :option:`runhaskell Setup.hs configure --user` option was supplied
1143     to the ``configure`` command.)
1145 .. option:: --user
1147     Register this package in the user's local package database. (This is
1148     the default if the :option:`runhaskell Setup.hs configure --user` option was supplied
1149     to the ``configure`` command.)
1151 .. _setup-copy:
1153 runhaskell Setup.hs copy
1154 ------------------------
1156 Copy the files without registering them. This command is mainly of use
1157 to those creating binary packages.
1159 This command takes the following option:
1161 .. program:: runhaskell Setup.hs copy
1163 .. option:: --destdir=path
1165    Specify the directory under which to place installed files. If this is
1166    not given, then the root directory is assumed.
1168 .. _setup-register:
1170 runhaskell Setup.hs register
1171 ----------------------------
1173 Register this package with the compiler, i.e. make the modules it
1174 contains available to programs. This only makes sense for library
1175 packages. Note that the ``install`` command incorporates this action.
1176 The main use of this separate command is in the post-installation step
1177 for a binary package.
1179 This command takes the following options:
1181 .. program:: runhaskell Setup.hs register
1183 .. option:: --global
1185     Register this package in the system-wide database. (This is the
1186     default.)
1188 .. option:: --user
1190     Register this package in the user's local package database.
1192 .. option:: --gen-script
1194     Instead of registering the package, generate a script containing
1195     commands to perform the registration. On Unix, this file is called
1196     ``register.sh``, on Windows, ``register.bat``. This script might be
1197     included in a binary bundle, to be run after the bundle is unpacked
1198     on the target system.
1200 .. option:: --gen-pkg-config[=path]
1202     Instead of registering the package, generate a package registration
1203     file (or directory, in some circumstances). This only applies to
1204     compilers that support package registration files which at the
1205     moment is only GHC. The file should be used with the compiler's
1206     mechanism for registering packages. This option is mainly intended
1207     for packaging systems. If possible use the :option:`--gen-script` option
1208     instead since it is more portable across Haskell implementations.
1209     The *path* is optional and can be used to specify a particular
1210     output file to generate. Otherwise, by default the file is the
1211     package name and version with a ``.conf`` extension.
1213     This option outputs a directory if the package requires multiple
1214     registrations: this can occur if internal/convenience libraries are
1215     used. These configuration file names are sorted so that they can be
1216     registered in order.
1218 .. option:: --inplace
1220     Registers the package for use directly from the build tree, without
1221     needing to install it. This can be useful for testing: there's no
1222     need to install the package after modifying it, just recompile and
1223     test.
1225     This flag does not create a build-tree-local package database. It
1226     still registers the package in one of the user or global databases.
1228     However, there are some caveats. It only works with GHC (currently).
1229     It only works if your package doesn't depend on having any
1230     supplemental files installed --- plain Haskell libraries should be
1231     fine.
1233 .. _setup-unregister:
1235 runhaskell Setup.hs unregister
1236 ------------------------------
1238 .. program:: runhaskell Setup.hs unregister
1240 Deregister this package with the compiler.
1242 This command takes the following options:
1244 .. option:: --global
1246     Deregister this package in the system-wide database. (This is the
1247     default.)
1249 .. option:: --user
1251     Deregister this package in the user's local package database.
1253 .. option:: --gen-script
1255     Instead of deregistering the package, generate a script containing
1256     commands to perform the deregistration. On Unix, this file is called
1257     ``unregister.sh``, on Windows, ``unregister.bat``. This script might
1258     be included in a binary bundle, to be run on the target system.
1260 .. _setup-clean:
1262 runhaskell Setup.hs clean
1263 -------------------------
1265 Remove any local files created during the ``configure``, ``build``,
1266 ``haddock``, ``register`` or ``unregister`` steps, and also any files
1267 and directories listed in the :pkg-field:`extra-tmp-files` field.
1269 This command takes the following options:
1271 .. program:: runhaskell Setup.hs clean
1273 .. option:: --save-configure, -s
1275     Keeps the configuration information so it is not necessary to run
1276     the configure step again before building.
1278 .. _setup-test:
1280 runhaskell Setup.hs test
1281 ------------------------
1283 Run the test suites specified in the package description file. Aside
1284 from the following flags, Cabal accepts the name of one or more test
1285 suites on the command line after ``test``. When supplied, Cabal will run
1286 only the named test suites, otherwise, Cabal will run all test suites in
1287 the package.
1289 .. program:: runhaskell Setup.hs test
1291 .. option:: --builddir=DIR
1293     The directory where Cabal puts generated build files (default:
1294     ``dist``). Test logs will be located in the ``test`` subdirectory.
1296 .. option:: --test-log=TEMPLATE
1298     The template used to name human-readable test logs; the path is
1299     relative to ``dist/test``. By default, logs are named according to
1300     the template ``$pkgid-$test-suite.log``, so that each test suite
1301     will be logged to its own human-readable log file. Template
1302     variables allowed are: ``$pkgid``, ``$compiler``, ``$os``,
1303     ``$arch``, ``$abi``, ``$abitag``, ``$test-suite``, and ``$result``.
1305 .. option:: --test-machine-log=TEMPLATE
1307     The path to the machine-readable log, relative to ``dist/test``. The
1308     default template is ``$pkgid.log``. Template variables allowed are:
1309     ``$pkgid``, ``$compiler``, ``$os``, ``$arch``, ``$abi``, ``$abitag``
1310     and ``$result``.
1312 .. option:: --test-show-details=FILTER
1314     Determines if the results of individual test cases are shown on the
1315     terminal. May be ``always`` (always show), ``never`` (never show),
1316     ``failures`` (show only failed results), ``streaming`` (show all
1317     results in real time) and ``direct`` (same as ``streaming`` but no log
1318     file and possibly prettier).
1320     Default value is ``direct``: it leaves test output untouched and does not
1321     produce a log. This allows for colored output, which is popular with testing
1322     frameworks. (On the other hand, ``streaming`` creates a log but looses
1323     coloring.)
1325 .. option:: --test-options=TEMPLATES
1327     Give extra options to the test executables.
1329 .. option:: --test-option=TEMPLATE
1331     Give an extra option to the test executables. There is no need to
1332     quote options containing spaces because a single option is assumed,
1333     so options will not be split on spaces.
1335 .. option:: --test-wrapper=FILE
1337    The wrapper script/application used to setup and tear down the test
1338    execution context. The text executable path and test arguments are
1339    passed as arguments to the wrapper and it is expected that the wrapper
1340    will return the test's return code, as well as a copy of stdout/stderr.
1342 .. _setup-bench:
1344 runhaskell Setup.hs bench
1345 -------------------------
1347 Run the benchmarks specified in the package description file. Aside
1348 from the following flags, Cabal accepts the name of one or more benchmarks
1349 on the command line after ``bench``. When supplied, Cabal will run
1350 only the named benchmarks, otherwise, Cabal will run all benchmarks in
1351 the package.
1353 .. option:: --benchmark-options=TEMPLATES
1355     Give extra options to the benchmark executables.
1357 .. option:: --benchmark-option=TEMPLATE
1359     Give an extra option to the benchmark executables. There is no need to
1360     quote options containing spaces because a single option is assumed,
1361     so options will not be split on spaces.
1363 .. _setup-sdist:
1365 runhaskell Setup.hs sdist
1366 -------------------------
1368 Create a system- and compiler-independent source distribution in a file
1369 *package*-*version*\ ``.tar.gz`` in the ``dist`` subdirectory, for
1370 distribution to package builders. When unpacked, the commands listed in
1371 this section will be available.
1373 The files placed in this distribution are the package description file,
1374 the setup script, the sources of the modules named in the package
1375 description file, and files named in the ``license-file``, ``main-is``,
1376 ``c-sources``, ``asm-sources``, ``cmm-sources``, ``js-sources``,
1377 ``data-files``, ``extra-source-files`` and ``extra-doc-files`` fields.
1379 This command takes the following option:
1381 .. program:: runhaskell Setup.hs sdist
1383 .. option:: --snapshot
1385     Append today's date (in "YYYYMMDD" format) to the version number for
1386     the generated source package. The original package is unaffected.
1389 .. include:: references.inc