Add emscripten to the "wasm" family of targets

This commit is contained in:
Alex Crichton 2021-11-16 13:10:35 -08:00
parent 7dc38369c0
commit 97cd27ab1d

View file

@ -37,7 +37,7 @@ pub fn target() -> Target {
is_like_emscripten: true,
panic_strategy: PanicStrategy::Unwind,
post_link_args,
families: vec!["unix".to_string()],
families: vec!["unix".to_string(), "wasm".to_string()],
..options
};
Target {