|
I was trying to do this: #[cfg(all(target_arch = "spirv", not(target_feature = "Int64")))]And despite I see similar code in I would have expected it to be recognized. Or is it recognized by the backend, but Rust will still complain about it? |
Answered by
nazar-pc
Jul 5, 2025
Replies: 1 comment 2 replies
|
You most likely copied this from our Lines 41 to 42 in 35abd95 You could likely make one for each available feature. A global list of all features would probably bloat your |
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Converted into an issue after more testing: #324