about summary refs log tree commit diff
path: root/library/std/src/os/l4re/raw.rs
AgeCommit message (Collapse)AuthorLines
2023-10-28Remove asmjs from libraryJubilee Young-1/+0
2023-08-14add a csky-unknown-linux-gnuabiv2 targetDirreke-0/+1
2023-01-25Remove outdated cfg on `le32`Urgau-1/+0
See https://github.com/rust-lang/rust/pull/45041 for the removal of the target (le32-unknown-nacl).
2022-04-14Remove use of `#[rustc_deprecated]`Jacob Pratt-5/+5
2022-03-09put L4Re specifics into their own platformBenjamin Lamowski-0/+365
The initial stdlib modifications for L4Re just used the linux specifics directly because they were reasonably close to L4Re's behavior. However, this breaks when Linux-specific code relies on code that is only available for the linux target, such as in #81825. Put L4Re into its own platform to avoid such breakage in the future. This uses the Linux-specific code as a starting point, which seems to be in line with other OSes with a unix-y interface such as Fuchsia.