How to check on multiple target families? #18125
Unanswered
augustocdias
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I have in my code base a bunch of conditional compilation for wasm and other targets:
#[cfg(target_family = "wasm")]
and#[cfg(not(target_family = "wasm"))]
. Everything that is under the wasm family is currently not being checked by rust-analyzer. I've tried setting theallTargets
option to'aarch64-apple-darwin', 'wasm32-unknown-unknown'
but it didn't work... Is there a way to have it checking both targets at the same time?Beta Was this translation helpful? Give feedback.
All reactions