Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Append paths in global config to progdb in configureCompiler v2 #10826

Merged
merged 7 commits into from
Mar 31, 2025

Conversation

yutotakano
Copy link
Contributor

@yutotakano yutotakano commented Mar 9, 2025

Supersedes #10790 by adding tests and fixing triple-prime variable naming.

Closes #9800.

QA Notes

Cabal should be able to resolve system packages using pkg-config when pkg-config doesn't exist in the system PATH but is provided in the path specified in ~/.cabal/config in the extra-prog-path.

On Mac/Unix and other systems where pkg-config exists in PATH, there should theoretically be no regressions due to this PR. Package dependency resolution and command line interface should be the same before and after.

On Windows where pkg-config does not exist on PATH by default, specifying one on extra-prog-path (like which is done by recent GHCup automatically) should now work for resolving dependencies, when previously it would not work. You should be able to QA this by:

  1. do a fresh GHCup/Haskell/Cabal install on Windows
  2. check that the mingw64 binary path had been added to the global cabal config file (wherever GHCup put it)
  3. install pkg-config into the Mingw environment: ghcup run -m -- pacman -S mingw64/mingw-w64-x86_64-pkg-config
  4. create a test cabal package that has a pkgconfig-depends on something
  5. BEFORE this PR: building the package will fail with not being able to find pkg-config
  6. AFTER this PR: pkg-config will be found by cabal, building failure/success is entirely on whether the dependency exists or not

Template Α: This PR modifies behaviour or interface

Include the following checklist in your PR:

@yutotakano yutotakano changed the title Append paths in global config to progdb in configureCompiler Append paths in global config to progdb in configureCompiler v2 Mar 9, 2025
@yutotakano yutotakano force-pushed the yt/fix-paths-windows branch 2 times, most recently from 2e768df to d20122d Compare March 9, 2025 14:46
@Mikolaj
Copy link
Member

Mikolaj commented Mar 17, 2025

Hi! Thank you for the fix. Does "UNEXPECTED FAIL: PackageTests/ExtraProgPathGlobal/setup.test.hs" sound reasonable or is this suspect of being an unrelated CI failure?

@yutotakano
Copy link
Contributor Author

yutotakano commented Mar 17, 2025

cHi! That's unexpected, and I've been meaning to fix it, but I haven't got my hands on a Linux/Mac machine yet to debug (the test passes on Windows but it's also supposed to pass on other OSes). Please wait a bit! Sorry, I should've marked this PR as a draft or something.

EDIT: in retrospect, I realised that I need this as a non-draft PR to run the CI checks on it. I'll write a message here once it's ready!

@yutotakano
Copy link
Contributor Author

@Mikolaj This is ready for review! The failure reason was simple: the script I added in the repo didn't have +x permissions, which is why it failed to run on Mac and Linux.

@Mikolaj
Copy link
Member

Mikolaj commented Mar 25, 2025

@yutotakano: thank you! Let me add a label to get the reviews started.

Copy link
Collaborator

@jasagredo jasagredo left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this looks very good. Thanks @yutotakano

@ulysses4ever
Copy link
Collaborator

This is subtle stuff. It'd be great to add QA notes https://github.com/haskell/cabal/blob/master/CONTRIBUTING.md#qa-notes.

@yutotakano
Copy link
Contributor Author

@ulysses4ever I've added some notes on what my intended functionality was and how QA can test it. I hope I'm understanding correctly what you meant by QA notes?

I also realised that the changelog entry file has the superceded PR number, is that fine? I suspect changing it would invalidate existing approval reviews, which is fine by me but additional effort for cabal maintainers.

@ulysses4ever
Copy link
Collaborator

Fixing the changelog file shouldn't invalidate anything, so, please, go ahead and fix it.

QA notes look great, thank you! Next step is to find someone with access to a Windows machine :-)

@yutotakano
Copy link
Contributor Author

Done re:changelog file! I'll await the reviews :)

Copy link
Member

@Mikolaj Mikolaj left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you. LGTM

Let me take the liberty of setting the merge label myself, to make it possible to include this in 3.14.2 if it's so decided (should it be backported)?

@Mikolaj Mikolaj added the squash+merge me Tell Mergify Bot to squash-merge label Mar 29, 2025
@mergify mergify bot added the ready and waiting Mergify is waiting out the cooldown period label Mar 29, 2025
@Mikolaj
Copy link
Member

Mikolaj commented Mar 31, 2025

Hah, it seems @yutotakano 's "note to reviewers" is blocking the merge. Let me resolve it...

@Mikolaj
Copy link
Member

Mikolaj commented Mar 31, 2025

And now it's waiting 2 days, so let me fix the confusion by adding the delay_passed label manually.

@Mikolaj Mikolaj added the merge delay passed Applied (usually by Mergify) when PR approved and received no updates for 2 days label Mar 31, 2025
Copy link
Contributor

mergify bot commented Mar 31, 2025

This pull request has been removed from the queue for the following reason: pull request branch update failed.

The pull request can't be updated

You should update or rebase your pull request manually. If you do, this pull request will automatically be requeued once the queue conditions match again.
If you think this was a flaky issue, you can requeue the pull request, without updating it, by posting a @mergifyio requeue comment.

@Mikolaj
Copy link
Member

Mikolaj commented Mar 31, 2025

@mergify rebase

jasagredo and others added 3 commits March 31, 2025 08:06
We add a new PackageTest for cabal-install, which makes sure that the
extra-prog-path in the global config is used when resolving pkg-config
instead of anything already on PATH. We do this by specifying a "bad"
pkg-config to extra-prog-path that returns exit code 1.

On Windows, Cabal logs are identical in the following two cases:
- the override didn't work, and pkg-config was not found on the system
- the override did work, and querying it failed (expectedly)
To work around this, we add a "good" pkg-config script to PATH before-
hand, so that cabal succeeds in the first case and the logs differ.

This test is a stripped down reproduction of what happens when a user on
Windows adds MSYS2 paths to extra-prog-path but not the system PATH.
This is a reasonable setup (often, adding MSYS2 to system PATH is not
good practice), and is even created automatically by GHCup.
Copy link
Contributor

mergify bot commented Mar 31, 2025

rebase

✅ Branch has been successfully rebased

@yutotakano
Copy link
Contributor Author

Apologies for the note, thank you for dealing with it!

@Mikolaj Mikolaj force-pushed the yt/fix-paths-windows branch from b54adb5 to 860dfab Compare March 31, 2025 08:06
@Mikolaj
Copy link
Member

Mikolaj commented Mar 31, 2025

I'm going to default to backporting this for 3.14.2. Please object if this breaks API or requires other PRs we have not backported.

@mergify mergify bot merged commit 74601f4 into haskell:master Mar 31, 2025
53 checks passed
@Mikolaj
Copy link
Member

Mikolaj commented Mar 31, 2025

@mergify backport 3.14

Copy link
Contributor

mergify bot commented Mar 31, 2025

backport 3.14

✅ Backports have been created

mergify bot pushed a commit that referenced this pull request Mar 31, 2025
* Append paths in global config to progdb in `configureCompiler`

* Add test to check global extra-prog-path is used in `configureCompiler`

We add a new PackageTest for cabal-install, which makes sure that the
extra-prog-path in the global config is used when resolving pkg-config
instead of anything already on PATH. We do this by specifying a "bad"
pkg-config to extra-prog-path that returns exit code 1.

On Windows, Cabal logs are identical in the following two cases:
- the override didn't work, and pkg-config was not found on the system
- the override did work, and querying it failed (expectedly)
To work around this, we add a "good" pkg-config script to PATH before-
hand, so that cabal succeeds in the first case and the logs differ.

This test is a stripped down reproduction of what happens when a user on
Windows adds MSYS2 paths to extra-prog-path but not the system PATH.
This is a reasonable setup (often, adding MSYS2 to system PATH is not
good practice), and is even created automatically by GHCup.

* Refactor `configureCompiler` path addition for cleaner variable names

* Remove unnecessary build target from ExtraProgPathGlobal test command

* Fix ExtraProgPathGlobal test failing on Mac/Unix for missing +x perms

* Rename pr-10790 changelog to pr-10826 as it superceded

* Add hashtag before PR/issue numbers in changelog for 10826

---------

Co-authored-by: Javier Sagredo <[email protected]>
(cherry picked from commit 74601f4)
mergify bot added a commit that referenced this pull request Mar 31, 2025
Backport #10826: Append paths in global config to progdb in configureCompiler v2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
attention: needs-review merge delay passed Applied (usually by Mergify) when PR approved and received no updates for 2 days ready and waiting Mergify is waiting out the cooldown period squash+merge me Tell Mergify Bot to squash-merge
Projects
None yet
Development

Successfully merging this pull request may close these issues.

cabal can not find pkg-config even though the right directory has been added to the extra-prog-path
4 participants