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 @@ -296,6 +296,11 @@ pub(crate) fn cli() -> App<'static, 'static> {
296
296
. help ( "Force an update, even if some components are missing" )
297
297
. long ( "force" )
298
298
. takes_value ( false ) ,
299
+ ) . arg (
300
+ Arg :: with_name ( "force-non-host" )
301
+ . help ( "Install toolchains that require an emulator. See https://github.com/rust-lang/rustup/wiki/Non-host-toolchains" )
302
+ . long ( "force-non-host" )
303
+ . takes_value ( false )
299
304
) ,
300
305
)
301
306
. subcommand (
@@ -422,7 +427,12 @@ pub(crate) fn cli() -> App<'static, 'static> {
422
427
. help ( "Allow rustup to downgrade the toolchain to satisfy your component choice" )
423
428
. long ( "allow-downgrade" )
424
429
. takes_value ( false ) ,
425
- ) ,
430
+ )
431
+ . arg (
432
+ Arg :: with_name ( "force-non-host" )
433
+ . help ( "Install toolchains that require an emulator. See https://github.com/rust-lang/rustup/wiki/Non-host-toolchains" )
434
+ . long ( "force-non-host" )
435
+ . takes_value ( false ) ) ,
426
436
)
427
437
. subcommand (
428
438
SubCommand :: with_name ( "uninstall" )
You can’t perform that action at this time.
0 commit comments