一般来说只需要rustup target add命令安装某个目标平台组件即可,但对于一些特殊平台,可能需要手动安装相关的交叉编译工具链,例如windows msvc或者android NDK。 下面是操作Target常用的命令: # 列出可用的target rustup target list # 安装一个新的rustup target add <target> rustup target add x86_64-unknown-linu...
一般来说只需要rustup target add命令安装某个目标平台组件即可,但对于一些特殊平台,可能需要手动安装相关的交叉编译工具链,例如windows msvc或者android NDK。 下面是操作Target常用的命令: # 列出可用的target rustup targetlist # 安装一个新的rustup target add <target> rustup target add x86_64-unknown-linux...
要为一个不是默认工具链的工具链安装一个目标,可以使用rustup target add的-工具链参数,像这样。 $ rustup target add --toolchain <toolchain> <target>... 要查看可用目标的列表,可以使用 rustup target list。要删除之前添加的目标,可以使用rustup target remove。 在Windows上使用Rust rustup在Windows上的工...
一般来说只需要rustup target add命令安装某个目标平台组件即可,但对于一些特殊平台,可能需要手动安装相关的交叉编译工具链,例如windows msvc或者android NDK。 下面是操作Target常用的命令: 代码语言:shell 复制 # 列出可用的targetrustup target list# 安装一个新的rustup target add <target>rustup targetaddx86_64...
一般来说只需要rustup target add命令安装某个目标平台组件即可,但对于一些特殊平台,可能需要手动安装相关的交叉编译工具链,例如windows msvc或者androidNDK。 下面是操作Target常用的命令: #列出可用的target rustuptargetlist #安装一个新的rustuptargetaddrustuptargetaddx86_64-unknown-linux-gnu ...
使用rustup override list查看已设置的默认工具链。 rustup target [SUBCOMMAND]配置工具链的可用目标 rustup target add <target>安装目标。 rustup target remove <target>卸载目标。 rustup target add --toolchain <toolchain> <target>为特定工具链安装目标。
查看已经安装的 target,用rustup show。 查看所有的 target,用rustup target list,标记 "installed" 为已经安装的。 环境变量 RUSTFLAGS= 是传递给 rustc 的参数。 -C 的内容,可以通过rustc -C help查看。 -C target-feature= 可以通过rustc --print target-features查看。
<host> = <target-triple> 1. 1. 'channel' is either a named release channel or an explicit version 1. number, such as '1.8.0'. Channel names can be optionally appended 1. with an archive date, as in 'nightly-2017-05-09', in which case ...
Finally,thehostmaybespecifiedasatargettriple.Thisis mostusefulforinstallinga32-bitcompilerona64-bitplatform, orforinstallingthe [MSVC-basedtoolchain]onWindows.For example: $rustuptoolchaininstallstable-x86_64-pc-windows-msvc Forconvenience,elementsofthetargettriplethatareomitted ...
To see a list of available targets, rustup target list. To remove a previously-added target, rustup target remove.Working with Rust on Windowsrustup works the same on Windows as it does on Unix, but there are some special considerations for Rust developers on Windows. As mentioned on the...