diff options
author | Sylvain Henry <sylvain@haskus.fr> | 2021-09-16 11:27:52 +0200 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2021-09-28 01:53:01 -0400 |
commit | 45a674aacf33dc47c48506b834752d59fffd7e2c (patch) | |
tree | 86288ea42f9735d58f623525795d797ccc689fa2 /docs/users_guide | |
parent | e38facf85200ea97ca107caefd1b17252639bc18 (diff) | |
download | haskell-45a674aacf33dc47c48506b834752d59fffd7e2c.tar.gz |
Add `-dsuppress-core-sizes` flag (#20342)
This flag is used to remove the output of core stats per binding in Core
dumps.
Diffstat (limited to 'docs/users_guide')
-rw-r--r-- | docs/users_guide/debugging.rst | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/docs/users_guide/debugging.rst b/docs/users_guide/debugging.rst index f9e6946b20..b9dcdb4a47 100644 --- a/docs/users_guide/debugging.rst +++ b/docs/users_guide/debugging.rst @@ -860,6 +860,14 @@ parts that you are not interested in. Suppress the printing of closure free variable lists in STG output +.. ghc-flag:: -dsuppress-core-sizes + :shortdesc: Suppress the printing of core size stats per binding (since 9.4) + :type: dynamic + + :since: 9.4.1 + + Suppress the printing of core size stats per binding + .. _checking-consistency: |