diff options
author | Leif Metcalf <me@leif.nz> | 2021-01-25 13:39:14 -0500 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2021-01-29 04:04:48 -0500 |
commit | 75accd548d245eda3096a1fa92a0f246a396b81f (patch) | |
tree | f909de67328f9c88890f904ed725215e4bf1c80d | |
parent | 18e106a8dfdae50c3078558382209f53794a8c97 (diff) | |
download | haskell-75accd548d245eda3096a1fa92a0f246a396b81f.tar.gz |
Warn about using quick with profiling
-rw-r--r-- | hadrian/doc/flavours.md | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/hadrian/doc/flavours.md b/hadrian/doc/flavours.md index c58398844f..806fe8ab81 100644 --- a/hadrian/doc/flavours.md +++ b/hadrian/doc/flavours.md @@ -205,9 +205,10 @@ The supported transformers are listed below: <tr> <td><code>profiled_ghc</code></td> <td>Build the GHC executable with cost-centre profiling support. - It is that you use this in conjunction with `no_dynamic_ghc` since - GHC does not It is support loading of profiled libraries with the - dynamically-linker.</td> + It is recommended that you use this in conjunction with `no_dynamic_ghc` since + GHC does not support loading of profiled libraries with the + dynamic linker. You should use a flavour that builds profiling libs and rts, + i.e. not <code>quick</code>.</td> </tr> <tr> <td><code>no_dynamic_ghc</code></td> |