10 lines
267 B
Rust
10 lines
267 B
Rust
use cfg_aliases::cfg_aliases;
|
|
|
|
fn main() {
|
|
cfg_aliases! {
|
|
chuni: { not(feature = "chusan") },
|
|
amdaemon: { all(feature = "chusan", target_pointer_width = "64") },
|
|
chusanapp: { all(feature = "chusan", target_pointer_width = "32") },
|
|
}
|
|
}
|