Skip to main content

luaur_code_gen/macros/
codegen_target_a_64.rs

1#[cfg(all(target_arch = "aarch64", not(target_os = "windows")))]
2pub const CODEGEN_TARGET_A64: bool = true;
3
4#[cfg(not(all(target_arch = "aarch64", not(target_os = "windows"))))]
5pub const CODEGEN_TARGET_A64: bool = false;