-
-
Notifications
You must be signed in to change notification settings - Fork 55
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
Use /mingw64 as default prefix on MSYS2/MinGW64 #245
Comments
it requires to know that you are in mingw64 reliably and I'm afraid it is not straightforward, but if you come up with a patch for it I'd be happy to merge it. :) |
I have no idea, but I hope that somebody will come up with a solution eventually! |
FWIW, when packaging for MSYS2, we always have to specify the prefix explicitly, as there are many MinGW environments, not just
If you're inside a MSYS2 shell (like the setup-msys2 action should be), one just uses So parts of your action would ideally be something like:
This makes it easy to switch/add more And finally
I'd remove the Ideally, you'll want to add a matrix to also test e.g. clangarm64 eventually as well (no runners available just yet), so please add support for |
If you can provide a patch for it and a ci item to test it would be great :) |
Currently, the
--prefix
has to be specified explicitly:cargo-c/.github/workflows/example-project.yml
Line 116 in 97a9d53
It would be great if
/mingw64
could be used as default on MSYS2/MinGW64, since/usr/local
doesn't seem to be searched by default.The text was updated successfully, but these errors were encountered: