// This is an ugly little hack to get access to a reasonable "default"
// target triple when loading bitcode inputs that don't mention their triple.
// Based on: https://stackoverflow.com/a/51311222
// Unwrap safety: None. If this fails, the build fails, and that's intended.
#[allow(clippy::unwrap_used)]fnmain(){println!("cargo:rustc-env=TARGET_TRIPLE={}",std::env::var("TARGET").unwrap());}