-
Notifications
You must be signed in to change notification settings - Fork 2
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
VCPKG_FORCE_SYSTEM_BINARIES needs to be set during vcpkg bootstrap #15
Comments
@0xg0nz0 Thanks for your suggestion. I will dig it and seek for a solution later. |
… ppc64 (#16) Close #15 Signed-off-by: msclock <[email protected]>
@msclock this appears to be still a problem, but only for vcpkg-test linking (is that even needed?):
FYI, full failed CI build when I remove my workaround to export VCPKG_FORCE_SYSTEM_BINARIES=1: https://github.com/iggy-rs/iggy-cpp-client/actions/runs/8765694062/job/24056959525 |
Reading the relevant scripts, I have a hunch this line in
The failure is happening during the build of the vcpkg binary, and it looks like you added VCPKG_FORCE_SYSTEM_BINARIES=1 in your updaterc function but not here. It may be that this has not yet taken effect by the time you call
|
Thanks @msclock ! You can close this, I can confirm it's working my end with the latest dev container build. Thanks for contributing this feature! |
you're welcome:) |
On a Mac M1 (arm64) the feature build fails because VCPKG_FORCE_SYSTEM_BINARIES has not been set.
This one-line change fixed it:
which I brought into my dev container locally as a workaround, but it would be nice to have it fixed at source.
The text was updated successfully, but these errors were encountered: