Enable math module for all "none" os targets

This was initially a bugfix that fixed gating math module for riscv32,
but conclusiion is it makes no sense to gate on target architecture.
This commit is contained in:
Michał Chodzikiewicz 2023-10-31 20:32:53 +01:00
parent beb46189a0
commit 8ec53915fe

View file

@ -45,11 +45,8 @@ pub mod int;
#[cfg(any(
all(target_family = "wasm", target_os = "unknown"),
all(target_arch = "x86_64", target_os = "none"),
target_os = "uefi",
all(target_arch = "arm", target_os = "none"),
all(target_arch = "xtensa", target_os = "none"),
all(target_arch = "mips", target_os = "none"),
target_os = "none",
target_os = "xous",
all(target_vendor = "fortanix", target_env = "sgx"),
target_os = "windows"