10 lines
322 B
Rust
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");
|
|
}
|