Skip to content

Commit dfe3c3c

Browse files
committed
Set target_family="wasm" for wasm targets
1 parent 4afea69 commit dfe3c3c

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

compiler/rustc_target/src/spec/wasm_base.rs

+1
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ pub fn options() -> TargetOptions {
6161

6262
TargetOptions {
6363
is_like_wasm: true,
64+
families: vec!["wasm".to_string()],
6465

6566
// we allow dynamic linking, but only cdylibs. Basically we allow a
6667
// final library artifact that exports some symbols (a wasm module) but

src/test/ui/cfg/cfg-family.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
// run-pass
1+
// build-pass
22
// pretty-expanded FIXME #23616
3-
// ignore-wasm32-bare no target_family
3+
// ignore-wasm32-bare no bare family
44
// ignore-sgx
55

66
#[cfg(windows)]

src/test/ui/cfg/cfg-target-family.rs

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
// run-pass
2-
// ignore-wasm32-bare no target_family
1+
// build-pass
32
// ignore-sgx
43

54
// pretty-expanded FIXME #23616
@@ -11,3 +10,7 @@ pub fn main() {
1110
#[cfg(target_family = "unix")]
1211
pub fn main() {
1312
}
13+
14+
#[cfg(target_family="wasm")]
15+
pub fn main() {
16+
}

0 commit comments

Comments
 (0)