Files
2026-09-21 22:29:23 +08:00

10 lines
322 B
Rust

#[cfg(not(all(target_os = "linux", target_arch = "aarch64", target_env = "musl")))]
compile_error!("fds-smoketest requires aarch64-unknown-linux-musl");
#[cfg(not(target_feature = "crt-static"))]
compile_error!("fds-smoketest must be statically linked");
fn main() {
println!("FDS/OS M0: aarch64 static-musl OK");
}