Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix - Disables the AArch64 target #511

Merged
merged 1 commit into from
Sep 6, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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