Recompilation: Handle -plugin-package correctly
If a plugins was specified using the -plugin-package-(id) flag then the module it applied to was always recompiled. The recompilation checker was previously using `findImportedModule`, which looked for packages in the HPT and then in the package database but only for modules specified using `-package`. The correct lookup function for plugins is `findPluginModule`, therefore we check normal imports with `findImportedModule` and plugins with `findPluginModule`. Fixes #20417
Showing
- compiler/GHC/Iface/Recomp.hs 9 additions, 5 deletionscompiler/GHC/Iface/Recomp.hs
- testsuite/tests/plugins/Makefile 6 additions, 0 deletionstestsuite/tests/plugins/Makefile
- testsuite/tests/plugins/T20417.stderr 3 additions, 0 deletionstestsuite/tests/plugins/T20417.stderr
- testsuite/tests/plugins/all.T 7 additions, 0 deletionstestsuite/tests/plugins/all.T
Loading
Please register or sign in to comment