//! Build script: one custom cfg, nothing else.
//!
//! `wasi_threadless` marks the wasm targets with no thread support. The
//! ecosystem's usual discriminator, `cfg!(target_feature = "atomics")`, does
//! not work: `atomics` is an *unstable* wasm target feature, so stable rustc
//! never reports it in `cfg!` even where it is enabled. The triple name is
//! the only stable signal.
//!
//! This runs on the host at build time and has no effect on the compiled
//! crate's `no_std` story.