Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from 2 commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
df93364
Added ability to report on generic argument mismatch better
strottos Feb 25, 2024
8a5245e
Refactored a few bits:
strottos Feb 26, 2024
4498cd6
extend extern tests to include FiveU16s
erikdesjardins Mar 17, 2024
41c6fa8
sparc64: fix crash in ABI code for { f64, f32 } struct
erikdesjardins Mar 17, 2024
74ef47e
make CastTarget::size and CastTarget::llvm_type consistent, remove
erikdesjardins Mar 17, 2024
8841315
make PassMode::Cast consistently copy between Rust/ABI representation
erikdesjardins Mar 17, 2024
8d5fd94
add tests for PassMode::Cast fixes
erikdesjardins Mar 17, 2024
6577aef
Revert "sparc64: fix crash in ABI code for { f64, f32 } struct"
erikdesjardins Mar 17, 2024
dec81ac
disable crashing test on sparc
erikdesjardins Mar 17, 2024
4c0aea0
Move some tests
c410-f3r Mar 31, 2024
8cf2c0d
Improve debugging experience
Nadrieril Mar 29, 2024
db9b4ea
Add tests
Nadrieril Mar 31, 2024
27704c7
Fix union handling in exhaustiveness
Nadrieril Mar 31, 2024
ab821ae
Fix precedence of postfix match
compiler-errors Apr 2, 2024
4cb5643
Fix contains_exterior_struct_lit
compiler-errors Apr 2, 2024
989660c
rename `expose_addr` to `expose_provenance`
joboet Apr 3, 2024
b40ea03
rustc_index: Add a `ZERO` constant to index types
petrochenkov Apr 3, 2024
6edb021
Fix target name in NetBSD platform-support doc
taiki-e Apr 3, 2024
32c8c5c
Rollup merge of #121595 - strottos:issue_116615, r=compiler-errors
matthiaskrgr Apr 3, 2024
bc8415b
Rollup merge of #122619 - erikdesjardins:cast, r=compiler-errors
matthiaskrgr Apr 3, 2024
80d592c
Rollup merge of #122964 - joboet:pointer_expose, r=Amanieu
matthiaskrgr Apr 3, 2024
0c8c18f
Rollup merge of #123291 - c410-f3r:testsssssss, r=petrochenkov
matthiaskrgr Apr 3, 2024
5f74403
Rollup merge of #123301 - Nadrieril:unions, r=compiler-errors
matthiaskrgr Apr 3, 2024
202509b
Rollup merge of #123395 - compiler-errors:postfix-matches-fixes-2, r=…
matthiaskrgr Apr 3, 2024
25b0e84
Rollup merge of #123419 - petrochenkov:zeroindex, r=compiler-errors
matthiaskrgr Apr 3, 2024
65398c4
Rollup merge of #123421 - taiki-e:netbsd-doc, r=Nilstrieb
matthiaskrgr Apr 3, 2024
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
8 changes: 4 additions & 4 deletions src/doc/rustc/src/platform-support/netbsd.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ are currently defined running NetBSD:

| Target name | NetBSD Platform |
|--------------------------------|-----------------|
| `amd64-unknown-netbsd` | [amd64 / x86_64 systems](https://wiki.netbsd.org/ports/amd64/) |
| `x86_64-unknown-netbsd` | [amd64 / x86_64 systems](https://wiki.netbsd.org/ports/amd64/) |
| `armv7-unknown-netbsd-eabihf` | [32-bit ARMv7 systems with hard-float](https://wiki.netbsd.org/ports/evbarm/) |
| `armv6-unknown-netbsd-eabihf` | [32-bit ARMv6 systems with hard-float](https://wiki.netbsd.org/ports/evbarm/) |
| `aarch64-unknown-netbsd` | [64-bit ARM systems, little-endian](https://wiki.netbsd.org/ports/evbarm/) |
Expand All @@ -22,7 +22,7 @@ are currently defined running NetBSD:
| `i686-unknown-netbsd` | [32-bit i386 with SSE](https://wiki.netbsd.org/ports/i386/) |
| `mipsel-unknown-netbsd` | [32-bit mips, requires mips32 cpu support](https://wiki.netbsd.org/ports/evbmips/) |
| `powerpc-unknown-netbsd` | [Various 32-bit PowerPC systems, e.g. MacPPC](https://wiki.netbsd.org/ports/macppc/) |
| `riscv64gc-unknown-netbsd` | [64-bit RISC-V](https://wiki.netbsd.org/ports/riscv/)
| `riscv64gc-unknown-netbsd` | [64-bit RISC-V](https://wiki.netbsd.org/ports/riscv/) |
| `sparc64-unknown-netbsd` | [Sun UltraSPARC systems](https://wiki.netbsd.org/ports/sparc64/) |

All use the "native" `stdc++` library which goes along with the natively
Expand All @@ -43,7 +43,7 @@ bug reporting system.

## Requirements

The `amd64-unknown-netbsd` artifacts is being distributed by the
The `x86_64-unknown-netbsd` artifacts is being distributed by the
rust project.

The other targets are built by the designated developers (see above),
Expand Down Expand Up @@ -95,7 +95,7 @@ capable systems we build and test `firefox` (amd64, i386, aarch64).

## Building Rust programs

Rust ships pre-compiled artifacts for the `amd64-unknown-netbsd`
Rust ships pre-compiled artifacts for the `x86_64-unknown-netbsd`
target.

For the other systems mentioned above, using the `pkgsrc` route is
Expand Down