diff options
author | iximeow <me@iximeow.net> | 2024-06-25 20:42:30 -0700 |
---|---|---|
committer | iximeow <me@iximeow.net> | 2024-06-25 20:42:30 -0700 |
commit | 90f05466987c185bc4c37c8be1c4ebab3b2f548d (patch) | |
tree | 554ae8aad0a48110008743672676e2359c109308 /src/display/display_sink.rs | |
parent | 1b5cc1daf35e60a9f78158b261a443f2fffd2fcc (diff) |
fix yaxpeax-arch not building for non-x86 targets when alloc is not enabled
Diffstat (limited to 'src/display/display_sink.rs')
-rw-r--r-- | src/display/display_sink.rs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/display/display_sink.rs b/src/display/display_sink.rs index e83f084..9aa3c85 100644 --- a/src/display/display_sink.rs +++ b/src/display/display_sink.rs @@ -1,13 +1,12 @@ use core::fmt; // `imp_x86.rs` has `asm!()` macros, and so is not portable at all. -#[cfg(feature="alloc")] -#[cfg(target_arch = "x86_64")] +#[cfg(all(feature="alloc", target_arch = "x86_64"))] #[path="./display_sink/imp_x86.rs"] mod imp; // for other architectures, fall back on possibly-slower portable functions. -#[cfg(not(target_arch = "x86_64"))] +#[cfg(all(feature="alloc", not(target_arch = "x86_64")))] #[path="./display_sink/imp_generic.rs"] mod imp; |