diff options
author | Matthew Pickering <matthewtpickering@gmail.com> | 2020-12-21 08:59:27 +0000 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2021-01-27 17:38:32 -0500 |
commit | 925738839891b320b9436e7383d55dce2b8d4543 (patch) | |
tree | 23b1eff30fedebfabb827193ac5259a06a13ef6b /testsuite/config/ghc | |
parent | 34a8a0e4cf188a30d2b4b65909f24185c80d071e (diff) | |
download | haskell-925738839891b320b9436e7383d55dce2b8d4543.tar.gz |
Deprecate -h flag
It is confusing that it defaults to two different things depending on
whether we are in the profiling way or not.
Use -hc if you have a profiling build
Use -hT if you have a normal build
Fixes #19031
Diffstat (limited to 'testsuite/config/ghc')
-rw-r--r-- | testsuite/config/ghc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/config/ghc b/testsuite/config/ghc index c54ac6b385..fa2c9d7c7c 100644 --- a/testsuite/config/ghc +++ b/testsuite/config/ghc @@ -118,7 +118,7 @@ config.way_flags = { config.way_rts_flags = { 'normal' : [], - 'normal_h' : ['-h'], # works without -prof + 'normal_h' : ['-hT'], # works without -prof 'g1' : ['-G1'], 'nursery_chunks' : ['-n32k'], 'debug_numa' : ['-N2', '--debug-numa=2'], |