File tree 1 file changed +11
-1
lines changed
1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -292,6 +292,11 @@ pub(crate) fn cli() -> App<'static, 'static> {
292
292
. help ( "Force an update, even if some components are missing" )
293
293
. long ( "force" )
294
294
. takes_value ( false ) ,
295
+ ) . arg (
296
+ Arg :: with_name ( "force-non-host" )
297
+ . help ( "Install toolchains that require an emulator. See https://github.com/rust-lang/rustup/wiki/Non-host-toolchains" )
298
+ . long ( "force-non-host" )
299
+ . takes_value ( false )
295
300
) ,
296
301
)
297
302
. subcommand (
@@ -414,7 +419,12 @@ pub(crate) fn cli() -> App<'static, 'static> {
414
419
. help ( "Allow rustup to downgrade the toolchain to satisfy your component choice" )
415
420
. long ( "allow-downgrade" )
416
421
. takes_value ( false ) ,
417
- ) ,
422
+ )
423
+ . arg (
424
+ Arg :: with_name ( "force-non-host" )
425
+ . help ( "Install toolchains that require an emulator. See https://github.com/rust-lang/rustup/wiki/Non-host-toolchains" )
426
+ . long ( "force-non-host" )
427
+ . takes_value ( false ) ) ,
418
428
)
419
429
. subcommand (
420
430
SubCommand :: with_name ( "uninstall" )
You can’t perform that action at this time.
0 commit comments