Skip to content

Rollup of 12 pull requests #127064

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 34 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
356027b
ast_passes/validation: update module docs
jieyouxu Apr 17, 2024
0e35216
ast_passes/validation: update attribute macro example
jieyouxu Apr 17, 2024
9aec5c5
Add test for fn pointer duplication.
cjgillot Apr 9, 2024
d223ba6
Document test.
cjgillot Apr 10, 2024
4c779d7
Mark `foo` as explicitly inline.
cjgillot May 4, 2024
11acf83
bootstrap: exclude cargo from package metadata
onur-ozkan Jun 14, 2024
457ac5d
don't fetch/sync cargo submodule by default
onur-ozkan Jun 14, 2024
8c3ebf7
refactor `tool_doc` macro in bootstrap
onur-ozkan Jun 14, 2024
51f6e68
handle cargo submodule in a lazy-load way
onur-ozkan Jun 14, 2024
ac7595f
Support for -Z patchable-function-entry
maurer Dec 12, 2023
9b0ae75
Support `#[patchable_function_entries]`
maurer Dec 12, 2023
7c56398
Updated code for changes to RFC, added additional error handling, added
nebulark May 2, 2024
d5ff4f4
Simplify `str::clone_into`
DaniPopes Jun 25, 2024
414ebea
add serde derive Serialize to stable_mir
Jun 17, 2024
315be7d
Update browser-ui-test version to `0.18.0`
GuillaumeGomez Jun 26, 2024
0c0dfb8
Switch back `non_local_definitions` lint to allow-by-default
Urgau Jun 27, 2024
648cb16
Enable const casting for `f16` and `f128`
tgross35 Jun 13, 2024
4a11ab0
Fix Markdown tables in platform-support.md
xen0n Jun 27, 2024
3457ecc
remove unnecessary packages from `metadata::workspace_members`
onur-ozkan Jun 27, 2024
ae64514
Migrate `run-make/override-aliased-flags` to `rmake.rs`
GuillaumeGomez Jun 27, 2024
789ee88
Tighten spans for async blocks
compiler-errors Jun 27, 2024
8d246b0
Updated diagnostic messages
nebulark Jun 26, 2024
d7fd67a
Rollup merge of #123714 - cjgillot:static-fnptr, r=wesleywiser
jhpratt Jun 28, 2024
1a0d6c4
Rollup merge of #124091 - jieyouxu:ast-validation-top-level-docs, r=w…
jhpratt Jun 28, 2024
f432014
Rollup merge of #124741 - nebulark:patchable-function-entries-pr, r=e…
jhpratt Jun 28, 2024
5c5b50e
Rollup merge of #126470 - onur-ozkan:optional-cargo-submodule, r=Kobzol
jhpratt Jun 28, 2024
584715a
Rollup merge of #126963 - runtimeverification:smir_serde_derive, r=ol…
jhpratt Jun 28, 2024
c79b475
Rollup merge of #126970 - DaniPopes:simplify-str-clone_into, r=cuviper
jhpratt Jun 28, 2024
d19478b
Rollup merge of #127010 - GuillaumeGomez:update-puppeteer, r=notriddle
jhpratt Jun 28, 2024
8661f54
Rollup merge of #127015 - Urgau:non_local_def-tmp-allow, r=lqd
jhpratt Jun 28, 2024
bf1cedf
Rollup merge of #127029 - xen0n:fix-platform-support-table, r=lqd
jhpratt Jun 28, 2024
80955dd
Rollup merge of #127032 - tgross35:f16-f128-const-eval-cast, r=oli-obk
jhpratt Jun 28, 2024
0c54d77
Rollup merge of #127041 - GuillaumeGomez:run-make-override-aliased-fl…
jhpratt Jun 28, 2024
863e408
Rollup merge of #127058 - compiler-errors:tighten-async-spans, r=oli-obk
jhpratt Jun 28, 2024
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
don't fetch/sync cargo submodule by default
Signed-off-by: onur-ozkan <work@onurozkan.dev>
  • Loading branch information
onur-ozkan committed Jun 24, 2024
commit 457ac5d570f1897ac4c59b3db5f86f26a17d14bb
3 changes: 1 addition & 2 deletions src/bootstrap/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -469,8 +469,7 @@ impl Build {

// Make sure we update these before gathering metadata so we don't get an error about missing
// Cargo.toml files.
let rust_submodules =
["src/tools/cargo", "src/doc/book", "library/backtrace", "library/stdarch"];
let rust_submodules = ["src/doc/book", "library/backtrace", "library/stdarch"];
for s in rust_submodules {
build.update_submodule(Path::new(s));
}
Expand Down