diff options
| author | Jacob Pratt <jacob@jhpratt.dev> | 2025-01-26 01:51:15 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-01-26 01:51:15 -0500 |
| commit | cecdb32d0ffdf599bb32367504a09002dbee710e (patch) | |
| tree | 6e59c43655e268584a1499581874891154d298fd /tests | |
| parent | 0d0e8415945b57be44223075b365ced7b33aae65 (diff) | |
| parent | 9a81dc97fb088c5cd088302d950000cd2565bb48 (diff) | |
| download | rust-cecdb32d0ffdf599bb32367504a09002dbee710e.tar.gz rust-cecdb32d0ffdf599bb32367504a09002dbee710e.zip | |
Rollup merge of #134358 - workingjubilee:configure-my-riscv-abi, r=fmease
compiler: Set `target_abi = "ilp32e"` on all riscv32e targets This allows compile-time configuration based on this. In the near future we should do this across all RISCV targets, probably, but this cfg is essential for building software usable on these targets, and they are tier 3 so it seems less of a concern to tweak their definition thusly.
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/ui/check-cfg/well-known-values.stderr | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ui/check-cfg/well-known-values.stderr b/tests/ui/check-cfg/well-known-values.stderr index 8ac3cb7ac3c..ffebd7e5531 100644 --- a/tests/ui/check-cfg/well-known-values.stderr +++ b/tests/ui/check-cfg/well-known-values.stderr @@ -129,7 +129,7 @@ warning: unexpected `cfg` condition value: `_UNEXPECTED_VALUE` LL | target_abi = "_UNEXPECTED_VALUE", | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | - = note: expected values for `target_abi` are: ``, `abi64`, `abiv2`, `abiv2hf`, `eabi`, `eabihf`, `fortanix`, `ilp32`, `llvm`, `macabi`, `sim`, `softfloat`, `spe`, `uwp`, `vec-extabi`, and `x32` + = note: expected values for `target_abi` are: ``, `abi64`, `abiv2`, `abiv2hf`, `eabi`, `eabihf`, `fortanix`, `ilp32`, `ilp32e`, `llvm`, `macabi`, `sim`, `softfloat`, `spe`, `uwp`, `vec-extabi`, and `x32` = note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg.html> for more information about checking conditional configuration warning: unexpected `cfg` condition value: `_UNEXPECTED_VALUE` |
