diff options
author | Matthew Pickering <matthewtpickering@gmail.com> | 2021-02-19 11:04:40 +0000 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2021-03-04 23:14:37 -0500 |
commit | e679321e859d2acad2248249efaab9bf1c13521b (patch) | |
tree | f7cfb53f11ab1695bd12f31b2256c851d83e6263 /hadrian/src/Flavour.hs | |
parent | db898c8a33813f4bdfbd38fe7595fbdd819c172a (diff) | |
download | haskell-e679321e859d2acad2248249efaab9bf1c13521b.tar.gz |
Hadrian: Enable -ticky-dyn-thunk in ticky_ghc transformer
This produces much more detailed ticky profiles which include names of
constructors.
Related !3340 !2098
Fixes #19403
Diffstat (limited to 'hadrian/src/Flavour.hs')
-rw-r--r-- | hadrian/src/Flavour.hs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hadrian/src/Flavour.hs b/hadrian/src/Flavour.hs index e07c2e9078..df918b5a8f 100644 --- a/hadrian/src/Flavour.hs +++ b/hadrian/src/Flavour.hs @@ -164,6 +164,7 @@ enableTickyGhc = ticky = mconcat [ arg "-ticky" , arg "-ticky-allocd" + , arg "-ticky-dyn-thunk" -- You generally need STG dumps to interpret ticky profiles , arg "-ddump-to-file" , arg "-ddump-stg-final" |