We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
The error is pretty straightforward
stderr: ------------------------------------------ warning: unused macro definition --> /<<PKGBUILDDIR>>/src/test/assembly/asm/bpf-types.rs:20:1 | 20 | / macro_rules! stringify { 21 | | () => {}; 22 | | } | |_^ | = note: `#[warn(unused_macros)]` on by default error: couldn't allocate output register for constraint 'w' --> /<<PKGBUILDDIR>>/src/test/assembly/asm/bpf-types.rs:42:19 | 42 | asm!("{} = {}", out($class) y, in($class) x); | ^ error: aborting due to previous error; 1 warning emitted
We don't use rust's LLVM but a more vanilla LLVM in the Debian rust build, could that be the issue?
CC @alessandrod as the author of the test.
I will just disable the test for now in Debian.
The text was updated successfully, but these errors were encountered:
I'm guessing that Debian LLVM is missing https://reviews.llvm.org/D102118
Sorry, something went wrong.
That was from 5 months ago, which version of LLVM was it released in?
The test says // min-llvm-version: 10.0.1 so this looks like it needs fixing.
// min-llvm-version: 10.0.1
Rollup merge of rust-lang#89697 - alessandrod:issue-89689, r=nikic
2e5a5e2
Fix min LLVM version for bpf-types test The test requires https://reviews.llvm.org/D102118 which was released in LLVM 13. Closes rust-lang#89689
8683d36
Successfully merging a pull request may close this issue.
The error is pretty straightforward
We don't use rust's LLVM but a more vanilla LLVM in the Debian rust build, could that be the issue?
CC @alessandrod as the author of the test.
I will just disable the test for now in Debian.
The text was updated successfully, but these errors were encountered: