We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Would expect the following to build the project, sysroot, and any dependent crates all with the bpf toolchain but it doesn't:
bpf
xargo +bpf build
In order to work around this either the default toolchain must be set to bpf:
rustup default bpf
Or local directory override must be set:
rustup override set bpf
Xargo should propagate the passed toolchain for everything it builds.
The text was updated successfully, but these errors were encountered:
Already raised for xargo: japaric/xargo#123
Our workaround is to use the RUSTUP_TOOLCHAIN environment variable.
RUSTUP_TOOLCHAIN
Sorry, something went wrong.
build(deps): bump proc-macro2 from 1.0.86 to 1.0.87 (solana-labs#3107)
f7c166b
* build(deps): bump proc-macro2 from 1.0.86 to 1.0.87 Bumps [proc-macro2](https://github.com/dtolnay/proc-macro2) from 1.0.86 to 1.0.87. - [Release notes](https://github.com/dtolnay/proc-macro2/releases) - [Commits](dtolnay/proc-macro2@1.0.86...1.0.87) --- updated-dependencies: - dependency-name: proc-macro2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> * Update all Cargo files --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
No branches or pull requests
Problem
Would expect the following to build the project, sysroot, and any dependent crates all with the
bpf
toolchain but it doesn't:In order to work around this either the default toolchain must be set to
bpf
:Or local directory override must be set:
rustup override set bpf
Proposed Solution
Xargo should propagate the passed toolchain for everything it builds.
The text was updated successfully, but these errors were encountered: