Skip to content

Rollup of 7 pull requests #129046

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 23 commits into from
Aug 13, 2024
Merged
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
207ee73
std: refactor UNIX random data generation
joboet Aug 4, 2024
ba3cb15
Remove unused lifetime parameter from spawn_unchecked
dtolnay Aug 6, 2024
715728f
Refactor `powerpc64` call ABI handling
beetrees Aug 4, 2024
99c0d76
std: use `/scheme/rand` on Redox
joboet Aug 12, 2024
83727ec
don't use rustflags for `--rustc-args`
lqd Aug 8, 2024
754f565
don't use `--rustc-args` to test the stdlib's size optimizations feature
lqd Aug 8, 2024
bc9ca29
clarify that `--rustc-args` is for compiletest tests
lqd Aug 8, 2024
0ad798a
remove unexpected `--rustc-args` from `./x miri`
lqd Aug 12, 2024
5e87256
rename `./x test`'s `--rustc-args` to `--compiletest-rustc-args`
lqd Aug 12, 2024
ee5d15c
regenerate `./x` completions
lqd Aug 12, 2024
2abfa35
add change tracker notice
lqd Aug 12, 2024
66c93ac
CFI: Move CFI ui tests to cfi directory
rcvalle Aug 12, 2024
6d91017
Extract a helper method for blessing in `Diff`
Zalathar Aug 13, 2024
cc58cf6
Fix blessing of rmake tests
Zalathar Aug 13, 2024
0cfbfa9
Create a `TargetSelection` method for recognizing `*-windows-gnu` tar…
Kobzol Aug 11, 2024
1c0c2c3
Implement `AsRef<Path>` for `TargetSelection`
Kobzol Aug 11, 2024
00d040e
Rollup merge of #128643 - beetrees:ppc64-abi-fix, r=bjorn3
matthiaskrgr Aug 13, 2024
c977deb
Rollup merge of #128655 - joboet:play_with_the_dice, r=ChrisDenton
matthiaskrgr Aug 13, 2024
37b9567
Rollup merge of #128745 - dtolnay:spawnunchecked, r=workingjubilee
matthiaskrgr Aug 13, 2024
0643c3b
Rollup merge of #128841 - lqd:rustc-args, r=onur-ozkan
matthiaskrgr Aug 13, 2024
9d9c9ac
Rollup merge of #128983 - Kobzol:bootstrap-target, r=onur-ozkan
matthiaskrgr Aug 13, 2024
41aa963
Rollup merge of #129026 - rcvalle:rust-cfi-move-cfi-ui-tests-to-cfi-d…
matthiaskrgr Aug 13, 2024
42f70c2
Rollup merge of #129040 - Zalathar:bless-rmake, r=jieyouxu
matthiaskrgr Aug 13, 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
std: use /scheme/rand on Redox
  • Loading branch information
joboet committed Aug 12, 2024
commit 99c0d768b0399b8f4f95dc285bd21e2e7ca1b10a
2 changes: 1 addition & 1 deletion library/std/src/sys/pal/unix/rand.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ cfg_if::cfg_if! {
}

const PATH: &'static str = if cfg!(target_os = "redox") {
"rand:"
"/scheme/rand"
} else {
"/dev/urandom"
};
Expand Down
Loading