diff options
author | Ömer Sinan Ağacan <omeragacan@gmail.com> | 2018-03-08 13:19:33 -0500 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2018-03-08 16:08:04 -0500 |
commit | bc95fedc0b1f45b62ba279f7df834c490c2e53b6 (patch) | |
tree | 1e3c0482097ac6888918a95a041b8bad738dd9a2 /docs/users_guide | |
parent | 98c7749cd360293bee96034056e260d70224cef6 (diff) | |
download | haskell-bc95fedc0b1f45b62ba279f7df834c490c2e53b6.tar.gz |
Error message and doc improvements for #14335
- Show a more friendly error message when -fplugin is used with
-fexternal-interpreter
- Add a few words to users guide about the interaction with -fplugin and
-fexternal-interpreter
- Update test for #14335
Reviewers: bgamari
Reviewed By: bgamari
Subscribers: rwbarton, thomie, carter
GHC Trac Issues: #14335
Differential Revision: https://phabricator.haskell.org/D4456
Diffstat (limited to 'docs/users_guide')
-rw-r--r-- | docs/users_guide/extending_ghc.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/users_guide/extending_ghc.rst b/docs/users_guide/extending_ghc.rst index e49effbd29..12043a0542 100644 --- a/docs/users_guide/extending_ghc.rst +++ b/docs/users_guide/extending_ghc.rst @@ -185,6 +185,9 @@ the constraint solver. If you feel strongly that any of these restrictions are too onerous, :ghc-wiki:`please give the GHC team a shout <MailingListsAndIRC>`. +Plugins do not work with ``-fexternal-interpreter``. If you need to run plugins +with ``-fexternal-interpreter`` let GHC developers know in :ghc-ticket:`14335`. + .. _using-compiler-plugins: Using compiler plugins |