Skip to content
Closed
Show file tree
Hide file tree
Changes from 2 commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
2a7ad95
Fix test hangs on AIX
mustartt Mar 3, 2025
506c304
Clarify iterator by_ref docs
hkBst Jan 24, 2025
6a38322
Rename print_something to should_render
compiler-errors Mar 5, 2025
279377f
Fix pretty printing of parsed attrs in hir_pretty
compiler-errors Mar 5, 2025
b827087
add tracking issue for unqualified_local_imports
RalfJung Mar 10, 2025
7ca7675
Make all keys explicit in citool
Kobzol Feb 27, 2025
0412507
Move job handling to a separate module
Kobzol Mar 10, 2025
3326a9f
Allow using glob aliases for custom try jobs
Kobzol Mar 10, 2025
06d86cd
Modify try-job documentation
Kobzol Mar 10, 2025
dfef1a7
Handle backticks in try job patterns
Kobzol Mar 10, 2025
16c08f6
Ignore job duplicates
Kobzol Mar 10, 2025
dcf6137
use next_back() instead of last() on DoubleEndedIterator
matthiaskrgr Mar 10, 2025
e337d87
Add powerpc64le maintainers
daltenty Mar 7, 2025
32afef4
Remove unnecessary `[lints.rust]` sections.
nnethercote Mar 11, 2025
c00a5c0
Fix post-merge workflow
jieyouxu Mar 11, 2025
6e83ebe
Document -Z crate-attr
jyn514 Mar 9, 2025
512ebed
add more -Z crate-attr tests
jyn514 Mar 11, 2025
1a2e22e
Enable `f16` tests for `powf`
tgross35 Mar 11, 2025
4529e50
Rollup merge of #135987 - hkBst:patch-20, r=joboet
Kobzol Mar 11, 2025
7a52b23
Rollup merge of #137967 - mustartt:fix-aix-test-hangs, r=workingjubilee
Kobzol Mar 11, 2025
9a30587
Rollup merge of #138063 - compiler-errors:improve-attr-unpretty, r=jd…
Kobzol Mar 11, 2025
54e141d
Rollup merge of #138147 - daltenty:patch-1, r=jieyouxu
Kobzol Mar 11, 2025
e2213f0
Rollup merge of #138288 - jyn514:crate-attr, r=Noratrieb
Kobzol Mar 11, 2025
d8c81fb
Rollup merge of #138300 - RalfJung:unqualified-local-imports, r=jieyouxu
Kobzol Mar 11, 2025
d2ae708
Rollup merge of #138307 - Kobzol:citool-alias, r=marcoieni
Kobzol Mar 11, 2025
7836401
Rollup merge of #138315 - matthiaskrgr:nextback, r=fmease
Kobzol Mar 11, 2025
23f8898
Rollup merge of #138330 - nnethercote:rm-lints-rust-sections, r=jieyouxu
Kobzol Mar 11, 2025
53ffcba
Rollup merge of #138335 - jieyouxu:fix-citool, r=marcoieni
Kobzol Mar 11, 2025
a9760f4
Rollup merge of #138343 - tgross35:f16-powf, r=joboet
Kobzol Mar 11, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/doc/rustc/src/SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@
- [powerpc-unknown-linux-gnuspe](platform-support/powerpc-unknown-linux-gnuspe.md)
- [powerpc-unknown-linux-muslspe](platform-support/powerpc-unknown-linux-muslspe.md)
- [powerpc64-ibm-aix](platform-support/aix.md)
- [powerpc64le-unknown-linux-gnu](platform-support/powerpc64le-unknown-linux-gnu.md)
- [powerpc64le-unknown-linux-musl](platform-support/powerpc64le-unknown-linux-musl.md)
- [riscv32e\*-unknown-none-elf](platform-support/riscv32e-unknown-none-elf.md)
- [riscv32i\*-unknown-none-elf](platform-support/riscv32-unknown-none-elf.md)
Expand Down
2 changes: 1 addition & 1 deletion src/doc/rustc/src/platform-support.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ target | notes
[`loongarch64-unknown-linux-musl`](platform-support/loongarch-linux.md) | LoongArch64 Linux, LP64D ABI (kernel 5.19, musl 1.2.5)
`powerpc-unknown-linux-gnu` | PowerPC Linux (kernel 3.2, glibc 2.17)
`powerpc64-unknown-linux-gnu` | PPC64 Linux (kernel 3.2, glibc 2.17)
`powerpc64le-unknown-linux-gnu` | PPC64LE Linux (kernel 3.10, glibc 2.17)
[`powerpc64le-unknown-linux-gnu`](platform-support/powerpc64le-unknown-linux-gnu.md) | PPC64LE Linux (kernel 3.10, glibc 2.17)
[`powerpc64le-unknown-linux-musl`](platform-support/powerpc64le-unknown-linux-musl.md) | PPC64LE Linux (kernel 4.19, musl 1.2.3)
[`riscv64gc-unknown-linux-gnu`](platform-support/riscv64gc-unknown-linux-gnu.md) | RISC-V Linux (kernel 4.20, glibc 2.29)
[`riscv64gc-unknown-linux-musl`](platform-support/riscv64gc-unknown-linux-musl.md) | RISC-V Linux (kernel 4.20, musl 1.2.3)
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
# `powerpc64le-unknown-linux-gnu`

**Tier: 2**

Target for 64-bit little endian PowerPC Linux programs

## Target maintainers

- David Tenty `[email protected]`, https://github.com/daltenty
- Chris Cambly, `[email protected]`, https://github.com/gilamn5tr

## Requirements

Building the target itself requires a 64-bit little endian PowerPC compiler that is supported by `cc-rs`.

## Building the target

The target can be built by enabling it for a `rustc` build.

```toml
[build]
target = ["powerpc64le-unknown-linux-gnu"]
```

Make sure your C compiler is included in `$PATH`, then add it to the `config.toml`:

```toml
[target.powerpc64le-unknown-linux-gnu]
cc = "powerpc64le-linux-gnu-gcc"
cxx = "powerpc64le-linux-gnu-g++"
ar = "powerpc64le-linux-gnu-ar"
linker = "powerpc64le-linux-gnu-gcc"
```

## Building Rust programs

This target is distributed through `rustup`, and requires no special
configuration.

## Cross-compilation

This target can be cross-compiled from any host.

## Testing

This target can be tested as normal with `x.py` on a 64-bit little endian
PowerPC host or via QEMU emulation.