| ... | @@ -17,12 +17,8 @@ const is_wasm = switch (native_arch) { | ... | @@ -17,12 +17,8 @@ const is_wasm = switch (native_arch) { |
| 17 | .wasm32, .wasm64 => true, | 17 | .wasm32, .wasm64 => true, |
| 18 | else => false, | 18 | else => false, |
| 19 | }; | 19 | }; |
| 20 | const is_msvc = switch (native_abi) { | | |
| 21 | .msvc => true, | | |
| 22 | else => false, | | |
| 23 | }; | | |
| 24 | const is_freestanding = switch (native_os) { | 20 | const is_freestanding = switch (native_os) { |
| 25 | .freestanding => true, | 21 | .freestanding, .other => true, |
| 26 | else => false, | 22 | else => false, |
| 27 | }; | 23 | }; |
| 28 | | 24 | |