-
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? |
Beta Was this translation helpful? Give feedback.
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 |
Beta Was this translation helpful? Give feedback.
Converted into an issue after more testing: #324