-
Notifications
You must be signed in to change notification settings - Fork 12.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Rollup of 7 pull requests #129349
Rollup of 7 pull requests #129349
Commits on Jul 21, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 01b68b7 - Browse repository at this point
Copy the full SHA 01b68b7View commit details
Commits on Aug 4, 2024
-
Special case DUMMY_SP to emit line 0/column 0 locations on DWARF plat…
…forms. Line 0 has a special meaning in DWARF. From the version 5 spec: The compiler may emit the value 0 in cases where an instruction cannot be attributed to any source line. DUMMY_SP spans cannot be attributed to any line. However, because rustc internally stores line numbers starting at zero, lookup_debug_loc() adjusts every line number by one. Special casing DUMMY_SP to actually emit line 0 ensures rustc communicates to the debugger that there's no meaningful source code for this instruction, rather than telling the debugger to jump to line 1 randomly.
Configuration menu - View commit details
-
Copy full SHA for 78caecf - Browse repository at this point
Copy the full SHA 78caecfView commit details -
Configuration menu - View commit details
-
Copy full SHA for e587855 - Browse repository at this point
Copy the full SHA e587855View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5dc4a19 - Browse repository at this point
Copy the full SHA 5dc4a19View commit details
Commits on Aug 18, 2024
-
bootstrap: fix clean's
remove_dir_all
implementation... by using `std::fs::remove_dir_all`, which handles a bunch of edge cases including read-only files and symlinks which are extremely tricky on Windows.
Configuration menu - View commit details
-
Copy full SHA for 1687c55 - Browse repository at this point
Copy the full SHA 1687c55View commit details
Commits on Aug 19, 2024
-
Update
library/Cargo.toml
in weekly jobBefore the workspace split, the library was covered by the weekly `cargo update` cron job. Now that the library has its own workspace, it doesn't get these updates. Add `library/Cargo.toml` to the job so updates happen again.
Configuration menu - View commit details
-
Copy full SHA for 35752cf - Browse repository at this point
Copy the full SHA 35752cfView commit details -
Configuration menu - View commit details
-
Copy full SHA for 76fbf0a - Browse repository at this point
Copy the full SHA 76fbf0aView commit details
Commits on Aug 20, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 3c735a0 - Browse repository at this point
Copy the full SHA 3c735a0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4e9725c - Browse repository at this point
Copy the full SHA 4e9725cView commit details -
rustdoc: animate the
:target
highlightThis approach is, roughly, based on how Discourse does it. It came up while discussing some other possible sidebar changes, as a design that made rapid scanning easier while avoiding the inherent trade-offs in summarizing.
Configuration menu - View commit details
-
Copy full SHA for 9d7574f - Browse repository at this point
Copy the full SHA 9d7574fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 40af214 - Browse repository at this point
Copy the full SHA 40af214View commit details
Commits on Aug 21, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 0f5c6ea - Browse repository at this point
Copy the full SHA 0f5c6eaView commit details -
Rollup merge of rust-lang#97524 - ibraheemdev:thread-raw, r=joshtriplett
Add `Thread::{into_raw, from_raw}` Public API: ```rust #![unstable(feature = "thread_raw", issue = "97523")] impl Thread { pub fn into_raw(self) -> *const (); pub unsafe fn from_raw(ptr: *const ()) -> Thread; } ``` ACP: rust-lang/libs-team#200
Configuration menu - View commit details
-
Copy full SHA for 0d7075e - Browse repository at this point
Copy the full SHA 0d7075eView commit details -
Rollup merge of rust-lang#128627 - khuey:DUMMY_SP-line-no, r=nnethercote
Special case DUMMY_SP to emit line 0/column 0 locations on DWARF platforms. Line 0 has a special meaning in DWARF. From the version 5 spec: The compiler may emit the value 0 in cases where an instruction cannot be attributed to any source line. DUMMY_SP spans cannot be attributed to any line. However, because rustc internally stores line numbers starting at zero, lookup_debug_loc() adjusts every line number by one. Special casing DUMMY_SP to actually emit line 0 ensures rustc communicates to the debugger that there's no meaningful source code for this instruction, rather than telling the debugger to jump to line 1 randomly.
Configuration menu - View commit details
-
Copy full SHA for ce9675b - Browse repository at this point
Copy the full SHA ce9675bView commit details -
Rollup merge of rust-lang#129187 - jieyouxu:squeaky-clean-windows-sym…
…links, r=Kobzol bootstrap: fix clean's remove_dir_all implementation It turns out bootstrap's `clean.rs`'s hand-rolled `rm_rf` (which probably comes before `std::fs::remove_dir_all` was stable) is very broken on native Windows around both read-only files/directories and especially symbolic links. So instead of rolling our own, just use `std::fs::remove_dir_all`. This is a blocker for compiletest's own `rm_rf` implementation rust-lang#129155 which happens to be also buggy, which in turn is a blocker for the rmake.rs test port rust-lang#128562 that heavily exercises symlinks (I was reviewing rust-lang#128562 and testing it on native Windows which is how I found out). I also left a FIXME for `detect_src_and_out` due to a failing assertion on native Windows (opened rust-lang#129188): ``` ---- core::config::tests::detect_src_and_out stdout ---- thread 'core::config::tests::detect_src_and_out' panicked at src\core\config\tests.rs:72:13: assertion `left == right` failed left: "E:\\tmp" right: "C:\\tmp" ``` Fixes rust-lang#112544 (because now we handle Windows symlinks properly). try-job: x86_64-msvc try-job: i686-mingw try-job: test-various try-job: armhf-gnu try-job: aarch64-apple try-job: aarch64-gnu
Configuration menu - View commit details
-
Copy full SHA for f9fc459 - Browse repository at this point
Copy the full SHA f9fc459View commit details -
Rollup merge of rust-lang#129257 - ChrisDenton:rename-null-descriptor…
…, r=jieyouxu Allow rust staticlib to work with MSVC's /WHOLEARCHIVE This fixes rust-lang#129020 by renaming the `__NULL_IMPORT_DESCRIPTOR` to prevent conflicts. try-job: dist-i686-msvc
Configuration menu - View commit details
-
Copy full SHA for 58c7f92 - Browse repository at this point
Copy the full SHA 58c7f92View commit details -
Rollup merge of rust-lang#129264 - tgross35:dependencies-ci-library, …
…r=Kobzol Update `library/Cargo.toml` in weekly job Before the workspace split, the library was covered by the weekly `cargo update` cron job. Now that the library has its own workspace, it doesn't get these updates. Add `library/Cargo.toml` to the job so updates happen again.
Configuration menu - View commit details
-
Copy full SHA for d1a279e - Browse repository at this point
Copy the full SHA d1a279eView commit details -
Rollup merge of rust-lang#129284 - notriddle:notriddle/animate-target…
…=light, r=GuillaumeGomez rustdoc: animate the `:target` highlight This approach is, roughly, based on how Discourse does it. It came up while discussing [some other possible sidebar changes](https://rust-lang.zulipchat.com/#narrow/stream/266220-t-rustdoc/topic/Moving.20deprecated.20items.20out.20of.20the.20way), as a design that made rapid scanning easier while avoiding the inherent trade-offs in summarizing. https://github.com/user-attachments/assets/f7a8fec3-70a5-40a1-92ea-bfdffbd61c22
Configuration menu - View commit details
-
Copy full SHA for 763509b - Browse repository at this point
Copy the full SHA 763509bView commit details -
Rollup merge of rust-lang#129339 - beetrees:make-indirect-from-ignore…
…, r=RalfJung Make `ArgAbi::make_indirect_force` more specific As the method is only needed for making ignored ZSTs indirect on some ABIs, rename and add a doc-comment and `self.mode` check to make it harder to accidentally misuse. Addresses review feedback from rust-lang#125854 (comment). r? `@RalfJung`
Configuration menu - View commit details
-
Copy full SHA for e5480f8 - Browse repository at this point
Copy the full SHA e5480f8View commit details