diff options
| author | Josh Triplett <josh@joshtriplett.org> | 2021-07-06 20:54:54 -0700 |
|---|---|---|
| committer | Josh Triplett <josh@joshtriplett.org> | 2021-07-07 08:52:35 -0700 |
| commit | 84d6e8aed3af940c53e49e342575e91f502c7bd4 (patch) | |
| tree | 2091248b3ab1995da65abe55c9d1e5d25c06bf6e /src/test/ui/cfg | |
| parent | c0bd5a584da4f26a1391163a0bdc21b34cf1ba54 (diff) | |
| download | rust-84d6e8aed3af940c53e49e342575e91f502c7bd4.tar.gz rust-84d6e8aed3af940c53e49e342575e91f502c7bd4.zip | |
Implement cfg(target_abi) (RFC 2992)
Add an `abi` field to `TargetOptions`, defaulting to "". Support using `cfg(target_abi = "...")` for conditional compilation on that field. Gated by `feature(cfg_target_abi)`. Add a test for `target_abi`, and a test for the feature gate. Add `target_abi` to tidy as a platform-specific cfg. This does not add an abi to any existing target.
Diffstat (limited to 'src/test/ui/cfg')
| -rw-r--r-- | src/test/ui/cfg/cfg-target-abi.rs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/test/ui/cfg/cfg-target-abi.rs b/src/test/ui/cfg/cfg-target-abi.rs new file mode 100644 index 00000000000..acc570fc843 --- /dev/null +++ b/src/test/ui/cfg/cfg-target-abi.rs @@ -0,0 +1,10 @@ +// run-pass +#![feature(cfg_target_abi)] + +#[cfg(target_abi = "eabihf")] +pub fn main() { +} + +#[cfg(not(target_abi = "eabihf"))] +pub fn main() { +} |
