Skip to content

Rollup of 6 pull requests #135357

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

Merged
merged 18 commits into from
Jan 11, 2025
Merged
Changes from 1 commit
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
4ba139d
bootstrap: `std::io::ErrorKind::CrossesDevices` is finally stable
GrigorenkoPV Dec 9, 2024
e1772e7
re-add a warning for old master branch, but with much simpler logic
lolbinarycat Jan 9, 2025
e21d125
Initial fs module for uefi
Ayush1325 Jan 10, 2025
6f2a783
Update a bunch of library types for MCP807
scottmcm Jan 8, 2025
4fd82f7
make `optimized-compiler-builtins` target configurable
onur-ozkan Jan 10, 2025
e02957a
add coverage for target specific value
onur-ozkan Jan 10, 2025
37eb9fa
ensure `optimized_compiler_builtins` check for CI rustc
onur-ozkan Jan 10, 2025
8f63485
add `optimized-compiler-builtins` to target specific section
onur-ozkan Jan 10, 2025
5a19c26
add change entry for `optimized-compiler-builtins`
onur-ozkan Jan 10, 2025
9ab77f1
Use `NonNull::without_provenance` within the standard library
samueltardieu Jan 10, 2025
60cbd74
never print the warning on CI
lolbinarycat Jan 11, 2025
ebd6d3f
Improve the safety documentation on new_unchecked
scottmcm Jan 11, 2025
bd81023
Rollup merge of #134074 - GrigorenkoPV:bootstrap-io-error-more, r=jie…
jhpratt Jan 11, 2025
351e618
Rollup merge of #135236 - scottmcm:more-mcp807-library-updates, r=Chr…
jhpratt Jan 11, 2025
8c3e9d7
Rollup merge of #135301 - lolbinarycat:bootstrap-old-master-resurecte…
jhpratt Jan 11, 2025
23c22a6
Rollup merge of #135324 - Ayush1325:uefi-fs-unsupported, r=joboet
jhpratt Jan 11, 2025
538d5dc
Rollup merge of #135326 - onur-ozkan:target-specific-compiler-builtin…
jhpratt Jan 11, 2025
46222ce
Rollup merge of #135347 - samueltardieu:push-qvyxtxsqyxyr, r=jhpratt
jhpratt Jan 11, 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
ensure optimized_compiler_builtins check for CI rustc
Signed-off-by: onur-ozkan <[email protected]>
onur-ozkan committed Jan 10, 2025
commit 37eb9fa73f492ec40a1149d3a559b37b34348db7
3 changes: 3 additions & 0 deletions src/bootstrap/src/core/config/config.rs
Original file line number Diff line number Diff line change
@@ -3172,6 +3172,9 @@ fn check_incompatible_options_for_ci_rustc(

let profiler = &ci_cfg.profiler;
err!(current_cfg.profiler, profiler, "build");

let optimized_compiler_builtins = &ci_cfg.optimized_compiler_builtins;
err!(current_cfg.optimized_compiler_builtins, optimized_compiler_builtins, "build");
}
}