Commit 2190f6c
committed
Auto merge of #38086 - semarie:openbsd-i686, r=alexcrichton
Add i686-unknown-openbsd target.
It is a preliminary work. I still have some tests failing, but I have a working rustc binary which is able to rebuild itself.
an update of libc should be required too, but I dunno how to do it with vendor/ layout.
r? @alexcrichtonFile tree
6 files changed
+67
-2
lines changed- mk/cfg
- src
- librustc_back/target
- librustc_trans
6 files changed
+67
-2
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
- .travis.yml+10-9
- Cargo.lock+2-2
- Cargo.toml+1-1
- README.md+1-1
- ci/docker/arm-linux-androideabi/Dockerfile+34-4
- ci/docker/arm-linux-androideabi/accept-licenses.sh+15
- ci/docker/arm-linux-androideabi/install-ndk.sh+21
- ci/docker/arm-linux-androideabi/install-sdk.sh+33
- ci/docker/mips-unknown-linux-musl/Dockerfile+4-1
- ci/run-docker.sh+12-5
- libc-test/build.rs+42-2
- src/unix/bsd/apple/mod.rs+45
- src/unix/bsd/freebsdlike/dragonfly/mod.rs+21
- src/unix/bsd/freebsdlike/freebsd/mod.rs+45-4
- src/unix/bsd/freebsdlike/mod.rs+30
- src/unix/bsd/netbsdlike/netbsd/mod.rs+46
- src/unix/bsd/netbsdlike/openbsdlike/mod.rs+7-3
- src/unix/bsd/netbsdlike/openbsdlike/other/b32/mod.rs+2
- src/unix/bsd/netbsdlike/openbsdlike/other/b64/mod.rs+2
- src/unix/bsd/netbsdlike/openbsdlike/other/mod.rs+11
- src/unix/mod.rs+5
- src/unix/notbsd/android/mod.rs+3
- src/unix/notbsd/linux/mips/mips32.rs+281
- src/unix/notbsd/linux/mips/mips64.rs+19-40
- src/unix/notbsd/linux/mips/mod.rs+11-262
- src/unix/notbsd/linux/mod.rs+22-4
- src/unix/notbsd/linux/musl/b32/arm.rs+1
- src/unix/notbsd/linux/musl/b32/asmjs.rs+1
- src/unix/notbsd/linux/musl/b32/mips.rs+1
- src/unix/notbsd/linux/musl/b32/x86.rs+1
- src/unix/notbsd/linux/musl/b64/mod.rs+1
- src/unix/notbsd/linux/musl/mod.rs+20
- src/unix/notbsd/linux/other/mod.rs+21
- src/unix/notbsd/linux/s390x.rs+19
- src/unix/notbsd/mod.rs+17
- src/unix/solaris/mod.rs+1
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
168 | 168 | | |
169 | 169 | | |
170 | 170 | | |
| 171 | + | |
| 172 | + | |
171 | 173 | | |
| 174 | + | |
172 | 175 | | |
173 | 176 | | |
174 | 177 | | |
| |||
299 | 302 | | |
300 | 303 | | |
301 | 304 | | |
| 305 | + | |
| 306 | + | |
| 307 | + | |
302 | 308 | | |
303 | 309 | | |
304 | 310 | | |
| |||
403 | 409 | | |
404 | 410 | | |
405 | 411 | | |
| 412 | + | |
406 | 413 | | |
407 | 414 | | |
408 | 415 | | |
| |||
569 | 576 | | |
570 | 577 | | |
571 | 578 | | |
| 579 | + | |
572 | 580 | | |
573 | 581 | | |
574 | 582 | | |
| |||
730 | 738 | | |
731 | 739 | | |
732 | 740 | | |
| 741 | + | |
733 | 742 | | |
734 | 743 | | |
735 | 744 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
17 | 17 | | |
18 | 18 | | |
19 | 19 | | |
| 20 | + | |
20 | 21 | | |
21 | 22 | | |
22 | 23 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
25 | 25 | | |
26 | 26 | | |
27 | 27 | | |
28 | | - | |
| 28 | + | |
| 29 | + | |
29 | 30 | | |
30 | 31 | | |
31 | 32 | | |
| |||
0 commit comments