Skip to content

Commit c37f1fb

Browse files
authored
Merge pull request #553 from nicholasbishop/bishop-uefi-more-math
2 parents d1d785a + 588cc2a commit c37f1fb

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ pub mod int;
4646
#[cfg(any(
4747
all(target_family = "wasm", target_os = "unknown"),
4848
all(target_arch = "x86_64", target_os = "none"),
49-
all(target_arch = "x86_64", target_os = "uefi"),
49+
target_os = "uefi",
5050
all(target_arch = "arm", target_os = "none"),
5151
all(target_arch = "xtensa", target_os = "none"),
5252
all(target_arch = "mips", target_os = "none"),

src/math.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ macro_rules! no_mangle {
2222
not(target_env = "wasi")
2323
),
2424
target_os = "xous",
25-
all(target_arch = "x86_64", target_os = "uefi"),
25+
target_os = "uefi",
2626
all(target_arch = "xtensa", target_os = "none"),
2727
all(target_vendor = "fortanix", target_env = "sgx")
2828
))]
@@ -94,7 +94,7 @@ no_mangle! {
9494
not(target_env = "wasi")
9595
),
9696
target_os = "xous",
97-
all(target_arch = "x86_64", target_os = "uefi"),
97+
target_os = "uefi",
9898
all(target_arch = "xtensa", target_os = "none"),
9999
all(target_vendor = "fortanix", target_env = "sgx"),
100100
target_os = "windows"

0 commit comments

Comments
 (0)