dd5512ccb0
target_os = "x86" or target_os = "x86_64"
6 lines
88 B
Rust
6 lines
88 B
Rust
#[cfg(target_arch = "x86")]
|
|
fn main() { }
|
|
|
|
#[cfg(target_arch = "x86_64")]
|
|
fn main() { }
|