Skip to content

Commit

Permalink
Disables the AArch64 target. (#511)
Browse files Browse the repository at this point in the history
  • Loading branch information
Lichtso authored Sep 6, 2023
1 parent fc5b957 commit 2b31e7e
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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;
Expand Down

0 comments on commit 2b31e7e

Please sign in to comment.