From 90f05466987c185bc4c37c8be1c4ebab3b2f548d Mon Sep 17 00:00:00 2001 From: iximeow Date: Tue, 25 Jun 2024 20:42:30 -0700 Subject: fix yaxpeax-arch not building for non-x86 targets when alloc is not enabled --- src/display/display_sink.rs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'src/display/display_sink.rs') 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; -- cgit v1.1