diff options
author | Adam Sandberg Ericsson <adam@sandbergericsson.se> | 2022-04-26 19:28:30 +0100 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2022-04-30 16:54:18 -0400 |
commit | d8cbc77e755f418ec40f15c7785c16e7a0309722 (patch) | |
tree | d910ff4fce205b6a60adf9b1b93faaae37a9ea53 /docs | |
parent | 2e951e48d9df131f55c2b939e283d4d38004937a (diff) | |
download | haskell-d8cbc77e755f418ec40f15c7785c16e7a0309722.tar.gz |
users guide: add categories to some flags
Diffstat (limited to 'docs')
-rw-r--r-- | docs/users_guide/separate_compilation.rst | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/users_guide/separate_compilation.rst b/docs/users_guide/separate_compilation.rst index b10d56dc39..84ec626a17 100644 --- a/docs/users_guide/separate_compilation.rst +++ b/docs/users_guide/separate_compilation.rst @@ -1446,7 +1446,7 @@ generation are: .. ghc-flag:: -ddump-mod-cycles :shortdesc: Dump module cycles :type: dynamic - :category: + :category: misc Display a list of the cycles in the module graph. This is useful when trying to eliminate such cycles. @@ -1461,7 +1461,7 @@ generation are: .. ghc-flag:: -dep-makefile ⟨file⟩ :shortdesc: Use ⟨file⟩ as the makefile :type: dynamic - :category: + :category: redirect-output Use ⟨file⟩ as the makefile, rather than ``makefile`` or ``Makefile``. If ⟨file⟩ doesn't exist, ``mkdependHS`` creates it. We @@ -1473,7 +1473,7 @@ generation are: :shortdesc: Make dependencies that declare that files with suffix ``.⟨suf⟩⟨osuf⟩`` depend on interface files with suffix ``.⟨suf⟩hi`` :type: dynamic - :category: + :category: redirect-output Make dependencies that declare that files with suffix ``.⟨suf⟩⟨osuf⟩`` depend on interface files with suffix @@ -1487,7 +1487,7 @@ generation are: :shortdesc: Regard ``⟨file⟩`` as "stable"; i.e., exclude it from having dependencies on it. :type: dynamic - :category: + :category: recompilation Regard ``⟨file⟩`` as "stable"; i.e., exclude it from having dependencies on it. @@ -1495,7 +1495,7 @@ generation are: .. ghc-flag:: -include-pkg-deps :shortdesc: Regard modules imported from packages as unstable :type: dynamic - :category: + :category: recompilation Regard modules imported from packages as unstable, i.e., generate dependencies on any imported package modules (including ``Prelude``, @@ -1508,7 +1508,7 @@ generation are: .. ghc-flag:: -include-cpp-deps :shortdesc: Include preprocessor dependencies :type: dynamic - :category: + :category: recompilation Output preprocessor dependencies. This only has an effect when the CPP language extension is enabled. These dependencies are files included with |