Permalink
Browse files
really_init cmdline args on Miri
- Loading branch information
Showing
with
7 additions
and
1 deletion.
-
+7
−1
src/libstd/sys/unix/args.rs
|
@@ -80,7 +80,13 @@ mod imp { |
|
|
|
|
|
#[inline(always)] |
|
|
pub unsafe fn init(_argc: isize, _argv: *const *const u8) { |
|
|
#[cfg(not(all(target_os = "linux", target_env = "gnu")))] |
|
|
// On Linux-GNU, we rely on `ARGV_INIT_ARRAY` below to initialize |
|
|
// `ARGC` and `ARGV`. But in Miri that does not actually happen so we |
|
|
// still initialize here. |
|
|
#[cfg(any( |
|
|
miri, |
|
|
not(all(target_os = "linux", target_env = "gnu")) |
|
|
))] |
|
|
really_init(_argc, _argv); |
|
|
} |
|
|
|
|
|
0 comments on commit
f621c25