about summary refs log tree commit diff
path: root/src/librustc_target/spec/aarch64_unknown_none_softfloat.rs
AgeCommit message (Collapse)AuthorLines
2020-08-30mv compiler to compiler/mark-37/+0
2020-07-08Avoid "blacklist"Tamir Duberstein-1/+1
Other terms are more inclusive and precise. Clippy still has a lint named "blacklisted-name", but renaming it would be a breaking change, so is left for future work. The target configuration option "abi-blacklist" has been depreciated and renamed to "unsupported-abis". The old name continues to work.
2020-04-26rustc_target: Stop using "string typing" for relocation modelsVadim Petrochenkov-2/+2
Introduce `enum RelocModel` instead.
2019-12-22Format the worldMark Rousskov-2/+2
2019-09-23Differentiate AArch64 bare-metal targets between hf and non-hf.Andre Richter-0/+37
Following up on [1] and [2], this PR adds differntiation for aarch64 bare-metal targets between versions with and without hardware floating point enabled. This streamlines the target naming with other existing ARM targets and provides the user clear indication if he is getting float or non-float for his bare-metal target. [1] https://github.com/rust-lang/rust/pull/60135#issuecomment-485851356 [2] https://github.com/rust-embedded/wg/issues/230 Closes: rust-embedded/wg#230