mirror of
https://git.yoctoproject.org/poky
synced 2026-04-28 15:32:27 +02:00
rust: Fix build break because of "download-rustc" and "llvm-tools"
>From Rust 1.84, the download-rustc and llvm-tools options were set to True (previously they were False)cce6f03754(download-rustc)38f0c099b2(llvm-tools) For tarball sources, the download-rustc option should be False, so it has been reverted back to False. Setting llvm-tools to True caused issues with finding llvm-objcopy, so this has been changed back to False. Upstream-Status: https://github.com/rust-lang/rust/pull/134240/ (From OE-Core rev: 2eb952d839e72c24a4180a57631c77910a0da980) Signed-off-by: Deepesh Varatharajan <Deepesh.Varatharajan@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
2cb5d1accc
commit
824f05fe73
@@ -137,6 +137,8 @@ python do_configure() {
|
||||
config.add_section("rust")
|
||||
config.set("rust", "rpath", e(True))
|
||||
config.set("rust", "remap-debuginfo", e(True))
|
||||
config.set("rust", "download-rustc", e(False))
|
||||
config.set("rust", "llvm-tools", e(False))
|
||||
config.set("rust", "channel", e(d.expand("${RUST_CHANNEL}")))
|
||||
|
||||
# Whether or not to optimize the compiler and standard library
|
||||
|
||||
Reference in New Issue
Block a user