- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在我的 64 位 Windows 机器上使用 rustc
和 cargo
来编译 32 位应用程序。这在使用稳定工具链时工作正常,但当我尝试使用 beta 工具链时它失败了。
使用 rustup install beta
成功安装了 beta 工具链。在项目文件夹中有一个包含以下行的 .cargo/config
文件:
[build]
target = "i686-pc-windows-msvc"
[target.i686-pc-windows-msvc]
rustflags = ["-Ctarget-feature=+crt-static"]
运行 cargo +beta build
时出现以下错误:
error[E0463]: can't find crate for `core`
|
= note: the `i686-pc-windows-msvc` target may not be installed
我尝试运行 rustup target add i686-pc-windows-msvc
来解决这个问题,但没有帮助; rustup target list
甚至将其显示为“已安装”。可能这个命令只添加了稳定的目标,我找不到如何指定 beta 工具链。
如何为 Beta 工具链添加另一个(非默认)目标?
最佳答案
阅读rustup target add
的帮助:
$ rustup target add --help
rustup-target-add
Add a target to a Rust toolchain
USAGE:
rustup target add [OPTIONS] <target>...
FLAGS:
-h, --help Prints help information
OPTIONS:
--toolchain <toolchain> Toolchain name, such as 'stable', 'nightly', or '1.8.0'. For more information see
`rustup help toolchain`
因此你想要:
rustup target add i686-pc-windows-msvc --toolchain beta
我相信默认情况下它会将目标添加到“当前”工具链,因此您也可以这样做:
rustup override set beta # in your project directory
rustup target add i686-pc-windows-msvc #
cargo build # no more +beta
rustup target list
even displays it as "installed"
阅读rustup target list
的帮助:
$ rustup target list --help
rustup-target-list
List installed and available targets
USAGE:
rustup target list [OPTIONS]
FLAGS:
-h, --help Prints help information
OPTIONS:
--toolchain <toolchain> Toolchain name, such as 'stable', 'nightly', or '1.8.0'. For more information see
`rustup help toolchain`
因此你想要:
rustup target list --toolchain beta
关于rust - 如何为特定的 rustup 工具链安装 Rust 目标?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53210121/
我使用命令安装 Rust: $ curl -sSf https://static.rust-lang.org/rustup.sh | sh 当我运行时: $ rustc main.rs 这出现了: e
我知道 rustup 将 rustc 和 cargo 二进制文件安装到 ~/.cargo/bin,但是它将 rustup 可执行文件安装到哪里?据我所知,这在任何文档中都没有解释,运行安装程序也不会告
我知道 rustup 将 rustc 和 cargo 二进制文件安装到 ~/.cargo/bin,但是它将 rustup 可执行文件安装到哪里?据我所知,这在任何文档中都没有解释,运行安装程序也不会告
我使用 rustup 安装了 Rust ,但是当我尝试在我的控制台中输入像 cargo 或 rustc 这样的 Rust 命令时,会出现以下错误: error: no default toolchai
我使用 official installation script 安装了 rustup+rust+cargo . 如何启用 shell 完成,以便能够键入 cargo 在终端中查看可能的命令,例如 c
在我的 ubuntu 20.04 rustup show 上运行此命令时,这是结果image 1 如何查看像这样的事件工具链的已安装目标? image 2 最佳答案 Rustup 只会在有多个可用部分
当我运行 rustup doc --book 时,我得到了这个: Access to the file was denied. The file at file:///home/ken/.rustup
我刚刚在 MacOS 上安装了带有 rustup 的 Rust,并注意到有两个 rustc 和两个 cargo 二进制文件: ~/.cargo/bin/rustc( cargo ) ~/.rustup
我通过 在我的 Ubuntu 16.04 机器上安装了 Rust curl https://sh.rustup.rs -sSf | sh 可以在 Installation Page 上看到. 我现在如
我想使用 Rust“每晚”构建来与 Arrow 和 Datafusion 一起工作。根据this post和使用rust book我应该能够将一个 rust-toolchain 文件放在项目的主目录中
我正在使用我的 Rust 构建创建我自己的工具链。我需要这个来与 iOS 架构交叉编译。尝试设置默认工具链或覆盖当前目录的工具链时,我收到有关工具链名称的错误。这些是我创建这个新工具链所采取的步骤:
我在我的 64 位 Windows 机器上使用 rustc 和 cargo 来编译 32 位应用程序。这在使用稳定工具链时工作正常,但当我尝试使用 beta 工具链时它失败了。 使用 rustup i
Rustup 文档展示了如何 install Rust nightly ,而不是如何删除它。 虽然文档确实展示了如何完全卸载 rustup,但我想保留稳定分支。 如何每晚卸载 Rust? 请注意,我尝
我正在尝试自动化一些东西,包括通过安装 rust curl https://sh.rustup.rs -sSf | sh 这是交互式的,查询用户输入以从中选择,即“1”“2”或“3”。 不知道怎么输入
我一直在尝试使用 Rustup 一段时间,当我尝试用它做任何事情时它会这样说: info: caused by: [1] Unsupported protocol (Protocol "https"
我正在尝试使用 clippy 安装 rustup,但我正在寻找为所有用户安装的方法。 我在/opt/setup 中安装了 rustup。每当我切换用户时,我都会得到这个: error: no defa
据我了解,Rust 的 beta channel 总是比 stable 早一个版本,nightly 总是比 beta 早一个版本。但是,出于某种原因,beta 和 nightly 现在似乎都是 1.1
我downloaded rustup-init.exe .当我在家里运行它时,一切都很好,但是当我通过代理从我的办公室运行它时,我遇到了一个问题: info: syncing channel upda
我是 Rust 的新手,目前正在阅读官方网站上的 Rust 书籍。 我现在正在研究 Rustup,我认为它非常酷。 我知道我们可以用 Rustup 管理 rustc 和 cargo 的版本,但是如果我
在 Rust 中,默认情况下,文件放在 $HOME/.cargo 和 $HOME/.rustup 中。有什么方法可以覆盖这些默认值吗? 我正在尝试调试一个模糊的问题,我想尝试更改文件位置。 最佳答案
我是一名优秀的程序员,十分优秀!