From 2b31e7ea344b60e234ae6b8362a3938e0d2df286 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20Mei=C3=9Fner?= Date: Wed, 6 Sep 2023 19:11:43 +0200 Subject: [PATCH] Disables the AArch64 target. (#511) --- src/lib.rs | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 7aaa25fe..b915b5ee 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -24,8 +24,6 @@ extern crate log; extern crate rand; extern crate thiserror; -#[cfg(all(feature = "jit", not(target_os = "windows"), target_arch = "aarch64"))] -mod aarch64; pub mod aligned_memory; mod asm_parser; pub mod assembler; @@ -40,11 +38,7 @@ pub mod error; pub mod fuzz; pub mod insn_builder; pub mod interpreter; -#[cfg(all( - feature = "jit", - not(target_os = "windows"), - any(target_arch = "aarch64", target_arch = "x86_64") -))] +#[cfg(all(feature = "jit", not(target_os = "windows"), target_arch = "x86_64"))] mod jit; #[cfg(feature = "jit")] mod memory_management;