Skip to content
This repository was archived by the owner on Jan 10, 2025. It is now read-only.

Commit 2b31e7e

Browse files
authored
Disables the AArch64 target. (#511)
1 parent fc5b957 commit 2b31e7e

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

src/lib.rs

+1-7
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@ extern crate log;
2424
extern crate rand;
2525
extern crate thiserror;
2626

27-
#[cfg(all(feature = "jit", not(target_os = "windows"), target_arch = "aarch64"))]
28-
mod aarch64;
2927
pub mod aligned_memory;
3028
mod asm_parser;
3129
pub mod assembler;
@@ -40,11 +38,7 @@ pub mod error;
4038
pub mod fuzz;
4139
pub mod insn_builder;
4240
pub mod interpreter;
43-
#[cfg(all(
44-
feature = "jit",
45-
not(target_os = "windows"),
46-
any(target_arch = "aarch64", target_arch = "x86_64")
47-
))]
41+
#[cfg(all(feature = "jit", not(target_os = "windows"), target_arch = "x86_64"))]
4842
mod jit;
4943
#[cfg(feature = "jit")]
5044
mod memory_management;

0 commit comments

Comments
 (0)