Backport #10731: cabal-install: Be less eager to configure external programs (#10875)
* Revert "cabal-install configureCompiler: configure progdb" This reverts commit 8bdda9c0. In configureCompiler the call to configureAllKnownPrograms was too eager. When called it selected the version of tools from PATH (such as alex), and then when a package was configured these tools were passed using `--with-alex` options to configure, which meant that the build-tool-depends versions were not used. (See #10692) Why was this call introduced in the first place? Because configureCompiler would a different result depending on whether: * It is run for the first time, the `ProgramDb` will contain unconfigured programs. * It is run subsequently, `ProgramDb` is read from disk, it does not contain unconfigured programs. Reverting this commit rexposes the bug that the serialised ProgramDb will not contain UnconfiguredPrograms (in the case where reconfiguring is avoided). However, there are no code paths which require this logic in `cabal-install` currently. The configuration phase happens again each time that `Cabal` is called, with a populated `ProgramDb`. We will fix this before the next major `cabal-install` release, but it would not be suitable to backport. In the future we will fix this properly by refactoring `configureCompiler` so that `ProgramDb` is not serialised. The general approach will be to make `configCompilerEx` return a pair of configured programs (`ghc` and `ghc-pkg`) and expose an additional function from `Cabal` which uses these two programs to perform the modifications to the `ProgramDb` which `configCompilerEx` performs. Also see #2238 and #9840 Fixes #10692 (cherry picked from commit 1c64bb8c) # Conflicts: # cabal-testsuite/PackageTests/ExtraProgPath/setup.out * Add a test to check that build-tool-depends are used (#10692) The testcase is not so easy to write because * The bug only surfaces when the build-tool you are depending on is known (ie alex, happy etc) * But then it is tricky to write a test, as we can't depend on the known tools or bundle the source for them. * So we create a fake "alex", which cabal then invokes on a fake ".x" file. This is maybe a bit fragile if the way cabal invokes alex changes in future, but then the test can be modified as well. Ticket #10692 (cherry picked from commit 24f83951) * Add a test to check that extra-prog-path is honoured for local packages Whilst fixing #10692, I realised there was also this bug where extra-prog-path would not be honoured for specific packages. The idea behind extra-prog-path is that each local package can use a different version of a preprocessor if desired. (cherry picked from commit 2c19bf35) * fixup! fix conflict --------- Co-authored-by:Matthew Pickering <matthewtpickering@gmail.com> Co-authored-by:
Artem Pelenitsyn <a.pelenitsyn@gmail.com> Co-authored-by:
mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
Showing
- cabal-install/src/Distribution/Client/ProjectPlanning.hs 45 additions, 6 deletionscabal-install/src/Distribution/Client/ProjectPlanning.hs
- cabal-testsuite/PackageTests/BuildToolDependsExternal/cabal.project 2 additions, 0 deletions...suite/PackageTests/BuildToolDependsExternal/cabal.project
- cabal-testsuite/PackageTests/BuildToolDependsExternal/client/Hello.x 3 additions, 0 deletions...uite/PackageTests/BuildToolDependsExternal/client/Hello.x
- cabal-testsuite/PackageTests/BuildToolDependsExternal/client/client.cabal 13 additions, 0 deletions...PackageTests/BuildToolDependsExternal/client/client.cabal
- cabal-testsuite/PackageTests/BuildToolDependsExternal/pre-proc/MyCustomPreprocessor.hs 13 additions, 0 deletions...BuildToolDependsExternal/pre-proc/MyCustomPreprocessor.hs
- cabal-testsuite/PackageTests/BuildToolDependsExternal/pre-proc/pre-proc.cabal 17 additions, 0 deletions...ageTests/BuildToolDependsExternal/pre-proc/pre-proc.cabal
- cabal-testsuite/PackageTests/BuildToolDependsExternal/scripts/alex 4 additions, 0 deletions...tsuite/PackageTests/BuildToolDependsExternal/scripts/alex
- cabal-testsuite/PackageTests/BuildToolDependsExternal/setup.out 14 additions, 0 deletions...testsuite/PackageTests/BuildToolDependsExternal/setup.out
- cabal-testsuite/PackageTests/BuildToolDependsExternal/setup.test.hs 5 additions, 0 deletions...suite/PackageTests/BuildToolDependsExternal/setup.test.hs
- cabal-testsuite/PackageTests/ExtraProgPath/setup.out 2 additions, 0 deletionscabal-testsuite/PackageTests/ExtraProgPath/setup.out
- cabal-testsuite/PackageTests/ExtraProgPathLocal/cabal.project 1 addition, 0 deletions...l-testsuite/PackageTests/ExtraProgPathLocal/cabal.project
- cabal-testsuite/PackageTests/ExtraProgPathLocal/client/Hello.x 3 additions, 0 deletions...-testsuite/PackageTests/ExtraProgPathLocal/client/Hello.x
- cabal-testsuite/PackageTests/ExtraProgPathLocal/client/client.cabal 12 additions, 0 deletions...suite/PackageTests/ExtraProgPathLocal/client/client.cabal
- cabal-testsuite/PackageTests/ExtraProgPathLocal/scripts/alex 3 additions, 0 deletionscabal-testsuite/PackageTests/ExtraProgPathLocal/scripts/alex
- cabal-testsuite/PackageTests/ExtraProgPathLocal/scripts/alex.exe 0 additions, 0 deletions...estsuite/PackageTests/ExtraProgPathLocal/scripts/alex.exe
- cabal-testsuite/PackageTests/ExtraProgPathLocal/scripts/alex.shim 2 additions, 0 deletions...stsuite/PackageTests/ExtraProgPathLocal/scripts/alex.shim
- cabal-testsuite/PackageTests/ExtraProgPathLocal/scripts2/alex 4 additions, 0 deletions...l-testsuite/PackageTests/ExtraProgPathLocal/scripts2/alex
- cabal-testsuite/PackageTests/ExtraProgPathLocal/scripts2/alex.exe 0 additions, 0 deletions...stsuite/PackageTests/ExtraProgPathLocal/scripts2/alex.exe
- cabal-testsuite/PackageTests/ExtraProgPathLocal/scripts2/alex.shim 2 additions, 0 deletions...tsuite/PackageTests/ExtraProgPathLocal/scripts2/alex.shim
- cabal-testsuite/PackageTests/ExtraProgPathLocal/setup.out 10 additions, 0 deletionscabal-testsuite/PackageTests/ExtraProgPathLocal/setup.out
Loading
Please register or sign in to comment