-
Notifications
You must be signed in to change notification settings - Fork 12.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix target_abi
in sparc-unknown-none-elf
#131174
Conversation
These commits modify compiler targets. |
Noting rust-lang/compiler-team#716 |
This comment has been minimized.
This comment has been minimized.
eb33df8
to
734594c
Compare
I mean, sure, but the target is still broken thanks to symbol.o having the wrong CPU architecture, isn't it? |
Don't know anything about that (or the target, for that matter), just opened this PR to fix the inconsistency in |
compiler/rustc_target/src/spec/targets/sparc_unknown_none_elf.rs
Outdated
Show resolved
Hide resolved
@rustbot author |
(r=me once above change has been made) |
This was previously set to `target_abi = "elf"`, but `elf` is not used elsewhere as a target ABI (even though there's many targets that have it in their name).
734594c
to
f51d8e3
Compare
Some changes occurred in tests/ui/check-cfg cc @Urgau |
Done now, thanks for the review |
@bors r+ rollup |
…nkfelix Fix `target_abi` in `sparc-unknown-none-elf` This was previously set to `target_abi = "elf"`, but `elf` is not used elsewhere as a target ABI (even though there's many targets that have it in their name), so I've removed it. CC target maintainer `@jonathanpallant,` what do you think about this? `@rustbot` label O-SPARC
…kingjubilee Rollup of 10 pull requests Successful merges: - rust-lang#130453 (Add x86_64-unknown-trusty as tier 3 target) - rust-lang#130518 (Stabilize the `map`/`value` methods on `ControlFlow`) - rust-lang#131116 (Increase Stack Size for AIX) - rust-lang#131171 (Fix `target_env` in `avr-unknown-gnu-atmega328`) - rust-lang#131174 (Fix `target_abi` in `sparc-unknown-none-elf`) - rust-lang#131177 ( Stabilize 5 `const_mut_refs`-dependent API) - rust-lang#131238 (Remove mw from triagebot.toml) - rust-lang#131240 (Fix typo in csky-unknown-linux-gnuabiv2.md) - rust-lang#131257 ([rustdoc] Fix list margins) - rust-lang#131264 (Fix some `pub(crate)` that were undetected bc of `#[instrument]`) r? `@ghost` `@rustbot` modify labels: rollup
Rollup merge of rust-lang#131174 - madsmtm:target-info-sparc-abi, r=pnkfelix Fix `target_abi` in `sparc-unknown-none-elf` This was previously set to `target_abi = "elf"`, but `elf` is not used elsewhere as a target ABI (even though there's many targets that have it in their name), so I've removed it. CC target maintainer ``@jonathanpallant,`` what do you think about this? ``@rustbot`` label O-SPARC
This was previously set to
target_abi = "elf"
, butelf
is not used elsewhere as a target ABI (even though there's many targets that have it in their name), so I've removed it.CC target maintainer @jonathanpallant, what do you think about this?
@rustbot label O-SPARC