about summary refs log tree commit diff
AgeCommit message (Collapse)AuthorLines
2024-11-26Merge pull request #4059 from tiif/fixtestOli Scherer-49/+18
Simplify thread blocking tests
2024-11-26Simplify thread blocking teststiif-49/+18
2024-11-26Merge pull request #4061 from asquared31415/dep_info_fixRalf Jung-5/+8
Use `PathBuf` APIs to correctly do some path manipulation cross-platform
2024-11-26Merge pull request #4016 from YohDeadfall/android-epollRalf Jung-22/+47
Added epoll and eventfd for Android
2024-11-25attempt to fix miri failing to create file when under weird powershell ↵asquared31415-5/+8
configurations
2024-11-25Fix the rest of the testsYoh Deadfall-6/+3
2024-11-25Added linux_like moduleYoh Deadfall-16/+17
2024-11-25Fixed test targetYoh Deadfall-2/+1
Co-authored-by: Ralf Jung <post@ralfj.de>
2024-11-25Added epoll and eventfd for AndroidYoh Deadfall-4/+32
2024-11-24Merge pull request #4037 from tiif/blockpipeRalf Jung-44/+80
Refactor AnonSocket::read/write for blocking socketpair
2024-11-24Merge pull request #4053 from devnexen/sysconf_extendRalf Jung-0/+7
sysconf adding few more constants.
2024-11-24sysconf: add _SC_OPEN_MAXDavid Carlier-0/+7
2024-11-24Merge pull request #4054 from devnexen/strerror_r_chgRalf Jung-50/+62
follow-up on #4052, making a miri evaluation context fn for strerror_r.
2024-11-24follow-up on #4052, making a miri evaluation context fn for strerror_r.David Carlier-50/+62
2024-11-23Merge pull request #4052 from devnexen/gh4050Ralf Jung-30/+90
sysconf interception fix for solarish systems.
2024-11-23sysconf interception fix for solarish systems.David Carlier-30/+90
also adding the `_SC_PAGESIZE` alias `_SC_PAGE_SIZE` supported by Linux, macOS and FreeBSD. close #4050
2024-11-22Merge pull request #4047 from RalfJung/eventfd-commentsRalf Jung-10/+14
eventfd: comment tweaks
2024-11-22Merge pull request #4049 from rust-lang/rustup-2024-11-22Ralf Jung-447/+2391
Automatic Rustup
2024-11-22disable solaris on CI for nowRalf Jung-1/+1
2024-11-22epoll: fix comment typoRalf Jung-2/+2
2024-11-22Merge from rustcThe Miri Cronjob Bot-445/+2389
2024-11-22Also change an older `$integer` to `{integer}`Josh Stone-1/+1
2024-11-22Change `$float` to `{float}` in relnotesJosh Stone-16/+16
Co-authored-by: Urgau <3616612+Urgau@users.noreply.github.com>
2024-11-22Add an empty line to fix markdown quotingJosh Stone-0/+1
2024-11-22Reorder lang relnotesJosh Stone-3/+3
2024-11-22Update relnotes from suggestions and issues syncJosh Stone-23/+22
2024-11-22Preparing for merge from rustcThe Miri Cronjob Bot-1/+1
2024-11-21Add release notes for Rust 1.83.0Josh Stone-0/+232
2024-11-21Merge pull request #4046 from CraftSpider/windows-error-mappingRalf Jung-3/+64
Fill out windows io error mapping table
2024-11-21Auto merge of #132362 - mustartt:aix-dylib-detection, r=jieyouxubors-22/+127
[AIX] change system dynamic library format Historically on AIX, almost all dynamic libraries are distributed in `.a` Big Archive Format which can consists of both static and shared objects in the same archive (e.g. `libc++abi.a(libc++abi.so.1)`). During the initial porting process, the dynamic libraries are kept as `.a` to simplify the migration, but semantically having an XCOFF object under the archive extension is wrong. For crate type `cdylib` we want to be able to distribute the libraries as archives as well. We are migrating to archives with the following format: ``` $ ar -t lib<name>.a lib<name>.so ``` where each archive contains a single member that is a shared XCOFF object that can be loaded.
2024-11-21Add comment about multiple errors to one ErrorKindRune Tynan-0/+4
2024-11-21eventfd: comment tweaksRalf Jung-9/+13
2024-11-21Fill out Windows error mapping tableRune Tynan-3/+60
2024-11-21Auto merge of #133246 - MarcoIeni:debug-info-2-windows-disable, r=Kobzolbors-1/+1
ci: Disable full `debuginfo-level=2` in windows alt job try-job: dist-x86_64-msvc-alt
2024-11-22Refactor AnonSocket::read/writetiif-44/+80
2024-11-21aix: fix archive formatHenry Jiang-22/+127
fmt fix cfg for windows remove unused imports address comments update libc to 0.2.164 fmt remove unused imports
2024-11-21Auto merge of #133287 - matthiaskrgr:rollup-ab9j3pu, r=matthiaskrgrbors-170/+1287
Rollup of 6 pull requests Successful merges: - #130236 (unstable feature usage metrics) - #131544 (Make asm label blocks safe context) - #131586 (Support s390x z13 vector ABI) - #132489 (Fix closure arg extraction in `extract_callable_info`, generalize it to async closures) - #133078 (tests: ui/inline-consts: add issue number to a test, rename other tests) - #133283 (Don't exclude relnotes from `needs-triage` label) r? `@ghost` `@rustbot` modify labels: rollup
2024-11-21Rollup merge of #133283 - jieyouxu:triage-relnotes, r=BoxyUwUMatthias Krüger-1/+0
Don't exclude relnotes from `needs-triage` label So initially we *didn't* exclude `needs-triage` label, then we did exclude them in #132825 as sometimes the `needs-triage` is redundant. However, I think they are probably worth double-checking because often some of the labels are only accurate/relevant for the *implementation* PR, but not for the purposes of the relnotes tracking issue. Furthermore, sometimes relevant team labels can be removed. So to make it less likely for relnotes to slip through, I think we should still label relnotes-tracking-issues with `needs-triage`. cc https://rust-lang.zulipchat.com/#narrow/channel/241545-t-release/topic/Please.20CC.20lang r? release
2024-11-21Rollup merge of #133078 - matthiaskrgr:uiuiui, r=davidtwcoMatthias Krüger-11/+11
tests: ui/inline-consts: add issue number to a test, rename other tests rename other tests from a_b_c to a-b-c
2024-11-21Rollup merge of #132489 - compiler-errors:fn-sugg-tweaks, r=BoxyUwUMatthias Krüger-139/+148
Fix closure arg extraction in `extract_callable_info`, generalize it to async closures * Fix argument extraction in `extract_callable_info` * FIx `extract_callable_info` to work for async closures * Remove redundant `is_fn_ty` which is just a less general `extract_callable_info` * More precisely name what is being called (i.e. call it a "closure" not a "function") Review this without whitespace -- I ended up reformatting `extract_callable_info` because some pesky `//` comments were keeping the let-chains from being formatted.
2024-11-21Rollup merge of #131586 - taiki-e:s390x-vector-abi, r=compiler-errors,uweigandMatthias Krüger-14/+865
Support s390x z13 vector ABI cc #130869 This resolves the following fixmes: - https://github.com/rust-lang/rust/blob/58420a065b68ecb3eec03b942740c761cdadd5c4/compiler/rustc_target/src/abi/call/s390x.rs#L1-L2 - https://github.com/rust-lang/rust/blob/58420a065b68ecb3eec03b942740c761cdadd5c4/compiler/rustc_target/src/spec/targets/s390x_unknown_linux_gnu.rs#L9-L11 Refs: Section 1.2.3 "Parameter Passing" and section 1.2.5 "Return Values" in ELF Application Binary Interface s390x Supplement, Version 1.6.1 (lzsabi_s390x.pdf in https://github.com/IBM/s390x-abi/releases/tag/v1.6.1) This PR extends ~~https://github.com/rust-lang/rust/pull/127731~~ https://github.com/rust-lang/rust/pull/132173 (merged) 's ABI check to handle cases where `vector` target feature is disabled. If we do not do ABI check, we run into the ABI problems as described in https://github.com/rust-lang/rust/issues/116558 and https://github.com/rust-lang/rust/issues/130869#issuecomment-2408268044, and the problem of the compiler generating strange code (https://github.com/rust-lang/rust/pull/131586#discussion_r1799003554). cc `@uweigand` `@rustbot` label +O-SystemZ +A-ABI
2024-11-21Rollup merge of #131544 - nbdd0121:asm_goto_safe_block, r=petrochenkovMatthias Krüger-2/+78
Make asm label blocks safe context Tracking issue: https://github.com/rust-lang/rust/issues/119364 `asm!()` is forced to be wrapped inside unsafe. If there's no special treatment, the label blocks would also always be unsafe with no way of opting out. It was suggested that a simple fix is to make asm label blocks safe: https://github.com/rust-lang/rust/issues/119364#issuecomment-2316037703. `@rustbot` labels: +A-inline-assembly +F-asm
2024-11-21Rollup merge of #130236 - yaahc:unstable-feature-usage, r=estebankMatthias Krüger-3/+185
unstable feature usage metrics example output ``` test-lib on  master [?] is 📦 v0.1.0 via 🦀 v1.80.1 ❯ cat src/lib.rs ───────┬─────────────────────────────────────────────────────── │ File: src/lib.rs ───────┼─────────────────────────────────────────────────────── 1 │ #![feature(unix_set_mark)] 2 │ pub fn add(left: u64, right: u64) -> u64 { 3 │ left + right 4 │ } 5 │ 6 │ #[cfg(test)] 7 │ mod tests { 8 │ use super::*; 9 │ 10 │ #[test] 11 │ fn it_works() { 12 │ let result = add(2, 2); 13 │ assert_eq!(result, 4); 14 │ } 15 │ } ───────┴─────────────────────────────────────────────────────── test-lib on  master [?] is 📦 v0.1.0 via 🦀 v1.80.1 ❯ cargo +stage1 rustc -- -Zmetrics-dir=$PWD/metrics Compiling test-lib v0.1.0 (/home/yaahc/tmp/test-lib) Finished `dev` profile [unoptimized + debuginfo] target(s) in 0.08s test-lib on  master [?] is 📦 v0.1.0 via 🦀 v1.80.1 ❯ cat metrics/unstable_feature_usage.json ───────┬───────────────────────────────────────────────────────────────────── │ File: metrics/unstable_feature_usage.json ───────┼───────────────────────────────────────────────────────────────────── 1 │ {"lib_features":[{"symbol":"unix_set_mark"}],"lang_features":[]} ``` related to https://github.com/rust-lang/rust/issues/129485
2024-11-21Auto merge of #132629 - nnethercote:124141-preliminaries, r=petrochenkovbors-69/+307
#124141 preliminaries Preliminary changes required to start removing `Nonterminal` (https://github.com/rust-lang/rust/pull/124141). r? `@petrochenkov`
2024-11-21Don't exclude relnotes from `needs-triage` labelJieyou Xu-1/+0
2024-11-21Auto merge of #133280 - matthiaskrgr:rollup-8keusum, r=matthiaskrgrbors-182/+434
Rollup of 5 pull requests Successful merges: - #131736 (Emscripten: link with -sWASM_BIGINT) - #132207 (Store resolution for self and crate root module segments) - #133153 (Add visits to nodes that already have flat_maps in ast::MutVisitor) - #133218 (Implement `~const` item bounds in RPIT) - #133228 (Rewrite `show_md_content_with_pager`) r? `@ghost` `@rustbot` modify labels: rollup
2024-11-21Merge pull request #4044 from RalfJung/rustupRalf Jung-1540/+3528
Rustup
2024-11-21fmtRalf Jung-6/+2
2024-11-21Merge from rustcRalf Jung-1534/+3526
2024-11-21Rollup merge of #133228 - nnethercote:rewrite-show_md_content_with_pager, ↵Matthias Krüger-50/+43
r=tgross35 Rewrite `show_md_content_with_pager` `show_md_content_with_pager` is complex and has a couple of bugs. This PR improves it. r? ``@tgross35``