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

Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
baed55c
Remove unreachable unsized arg handling in `store_fn_arg/store_arg` i…
zachs18 Sep 12, 2025
619a696
clean up issue-2284 (core marker trait name shadowing)
omskscream Sep 13, 2025
05a5c7d
clean up issue-19479 (assoc type from another trait)
omskscream Sep 13, 2025
8ee3a08
clean up issue-18088 (operator from supertrait)
omskscream Sep 13, 2025
22aecd3
clean up issue-21950 (dyn trait cast without assoc type at the cast)
omskscream Sep 13, 2025
1991779
Make llvm_enzyme a regular cargo feature
bjorn3 Sep 15, 2025
929c933
Add parallel-frontend-threads to bootstrap.toml and enable multi-thre…
Hayden602 Sep 9, 2025
b79a4bf
Do not use `git -C dir`
samueltardieu Sep 16, 2025
b2b43b2
Add space after brace in `Box<[T]>::new_uninit_slice` example
XrXr Sep 17, 2025
205189c
port `#[rustc_coherence_is_core]` to the new attribute parsing infras…
jdonszelmann Aug 24, 2025
0a2be63
Rollup merge of #146458 - Hayden602:bootstrap, r=Kobzol
jdonszelmann Sep 17, 2025
802343f
Rollup merge of #146485 - zachs18:store_fn_arg-no-unsized, r=davidtwco
jdonszelmann Sep 17, 2025
1c1d5c7
Rollup merge of #146536 - omskscream:#133895/clean-ui-tests, r=davidtwco
jdonszelmann Sep 17, 2025
9303a92
Rollup merge of #146598 - bjorn3:feature_llvm_enzyme, r=davidtwco
jdonszelmann Sep 17, 2025
be8c29c
Rollup merge of #146647 - jdonszelmann:move-coherence-is-core, r=urgau
jdonszelmann Sep 17, 2025
b8a80e4
Rollup merge of #146654 - samueltardieu:issue142534, r=Kobzol
jdonszelmann Sep 17, 2025
c6ed4c0
Rollup merge of #146681 - XrXr:patch-1, r=joboet
jdonszelmann Sep 17, 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
Prev Previous commit
Next Next commit
Do not use git -C dir
Older versions of git (≤ 1.8.5) do not support the `-C dir` global
option. Use the `cwd` optional argument when using Python's
`subprocess` functionality instead.
  • Loading branch information
samueltardieu committed Sep 16, 2025
commit b79a4bfad66dea3a8b6bc90985cb65378288fe07
6 changes: 3 additions & 3 deletions src/bootstrap/bootstrap.py
Original file line number Diff line number Diff line change
Expand Up @@ -1193,16 +1193,16 @@ def get_latest_commit(self):
return "<commit>"
cmd = [
"git",
"-C",
repo_path,
"rev-list",
"--author",
author_email,
"-n1",
"HEAD",
]
try:
commit = subprocess.check_output(cmd, universal_newlines=True).strip()
commit = subprocess.check_output(
cmd, universal_newlines=True, cwd=repo_path
).strip()
return commit or "<commit>"
except subprocess.CalledProcessError:
return "<commit>"
Expand Down
Loading