Skip to content

Rollup of 10 pull requests #140414

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

Closed
wants to merge 28 commits into from
Closed
Changes from 2 commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
6cfdd53
Stabilize `slice_as_chunks` library feature
scottmcm Apr 11, 2025
c49ddc0
Improve rustdocs on slice_as_chunks methods
scottmcm Apr 19, 2025
64c8d5d
move existing tests away from using boxes
dianne Mar 17, 2025
0eb3b11
lower deref patterns on boxes using built-in derefs
dianne Apr 17, 2025
4313318
update unstable book to mention moving out of boxes
dianne Apr 18, 2025
f319dd9
add llvm wrappers and corresponding methods in attribute
Shourya742 Apr 20, 2025
9bc0401
add custom enzyme markers to target methods
Shourya742 Apr 20, 2025
4e555fa
Test partial moves via deref pats
Nadrieril Apr 27, 2025
6ceeb08
Implement the internal feature `cfg_target_has_reliable_f16_f128`
tgross35 Apr 24, 2025
dfa972e
Use `feature(target_has_reliable_f16_f128)` in library tests
tgross35 Apr 26, 2025
3ab6051
Move inline_asm to typeck, properly handle aliases
compiler-errors Apr 25, 2025
f07cc40
Rename sub_ptr to offset_from_unsigned in docs
DaniPopes Apr 28, 2025
8fa5e3a
Make bootstrap git tests more self-contained
Kobzol Apr 28, 2025
52594ef
Workaround for windows-gnu rust-lld test failure
ChrisDenton Apr 28, 2025
7018392
remove noinline attribute and add alwaysinline after AD pass
Shourya742 Apr 20, 2025
fa90fea
only return nested goals for `Certainty::Yes`
lcnr Apr 28, 2025
016105c
review
lcnr Apr 28, 2025
105d1dc
Do not compute type_of for impl item if impl where clauses are unsati…
compiler-errors Apr 25, 2025
ceaf5e0
Rollup merge of #139308 - Shourya742:2025-03-29-add-autodiff-inline, …
ChrisDenton Apr 28, 2025
19928c4
Rollup merge of #139656 - scottmcm:stabilize-slice-as-chunks, r=dtolnay
ChrisDenton Apr 28, 2025
a32eea5
Rollup merge of #140022 - dianne:box-deref-pats, r=Nadrieril
ChrisDenton Apr 28, 2025
1d63e53
Rollup merge of #140276 - compiler-errors:typeof-less-eagerly, r=lcnr
ChrisDenton Apr 28, 2025
657bfe0
Rollup merge of #140302 - compiler-errors:inline_asm-bug, r=lcnr
ChrisDenton Apr 28, 2025
98e5021
Rollup merge of #140323 - tgross35:cfg-unstable-float, r=Urgau
ChrisDenton Apr 28, 2025
2f65b97
Rollup merge of #140391 - DaniPopes:sub-ptr-rename, r=RalfJung
ChrisDenton Apr 28, 2025
39d1382
Rollup merge of #140394 - Kobzol:git-test-self-contained, r=jieyouxu
ChrisDenton Apr 28, 2025
7aa661f
Rollup merge of #140396 - ChrisDenton:gnu-threads, r=jieyouxu
ChrisDenton Apr 28, 2025
d5ecdab
Rollup merge of #140402 - lcnr:normalizes-to-certainty-yes, r=compile…
ChrisDenton Apr 28, 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
3 changes: 3 additions & 0 deletions src/bootstrap/src/utils/tests/git.rs
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,9 @@ impl GitCtx {

fn git_cmd(&self) -> Command {
let mut cmd = Command::new("git");
cmd.env("GIT_CONFIG_NOSYSTEM", "1");
cmd.env("GIT_CONFIG_SYSTEM", "/tmp/nonexistent");
cmd.env("GIT_CONFIG_GLOBAL", "/tmp/nonexistent");
cmd.current_dir(&self.dir);
cmd
}
Expand Down