mirror of
https://git.yoctoproject.org/poky
synced 2026-02-15 21:23:04 +01:00
Rust stable version updated to 1.84.1.
https://blog.rust-lang.org/2025/01/30/Rust-1.84.1.html
Renamed and modified the below patch to adapt the new version.
rv32-cargo-rustix-0.38.37-fix.patch->rv32-cargo-rustix-0.38.38-fix.patch
Modified the below patches to adapt the new version.
repro-issue-fix-with-cc-crate-hashmap.patch
revert-link-std-statically-in-rustc_driver-feature.patch
Dropped the below patches :
0001-NFC-fix-build-failure-100993.patch
6ee49080e4
revert-Zdual-proc-macros-additional-check.patch
Issue is fixed in rust-master and the fix is backported in the
subsequent patch of the series.
(From OE-Core rev: 4265f668de8c6708cb3a003ad655559031724149)
Signed-off-by: Deepesh Varatharajan <Deepesh.Varatharajan@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
50 lines
2.1 KiB
PHP
50 lines
2.1 KiB
PHP
#
|
|
# Default toolchain configuration
|
|
#
|
|
|
|
PREFERRED_PROVIDER_virtual/cross-binutils = "${MLPREFIX}binutils-cross-${TARGET_ARCH}"
|
|
PREFERRED_PROVIDER_virtual/cross-binutils:class-nativesdk ?= "binutils-crosssdk-${SDK_SYS}"
|
|
PREFERRED_PROVIDER_virtual/nativesdk-cross-binutils ?= "binutils-crosssdk-${SDK_SYS}"
|
|
|
|
# Default libc config
|
|
PREFERRED_PROVIDER_virtual/gettext ??= "gettext"
|
|
|
|
GCCVERSION ?= "14.%"
|
|
SDKGCCVERSION ?= "${GCCVERSION}"
|
|
GLIBCVERSION ?= "2.41%"
|
|
RUSTVERSION ?= "1.84.1%"
|
|
|
|
PREFERRED_VERSION_gcc ?= "${GCCVERSION}"
|
|
PREFERRED_VERSION_gcc-cross-${TARGET_ARCH} ?= "${GCCVERSION}"
|
|
PREFERRED_VERSION_gcc-crosssdk-${SDK_SYS} ?= "${SDKGCCVERSION}"
|
|
PREFERRED_VERSION_gcc-cross-canadian-${TRANSLATED_TARGET_ARCH} ?= "${GCCVERSION}"
|
|
PREFERRED_VERSION_gcc-runtime ?= "${GCCVERSION}"
|
|
PREFERRED_VERSION_gcc-sanitizers ?= "${GCCVERSION}"
|
|
PREFERRED_VERSION_nativesdk-gcc-runtime ?= "${SDKGCCVERSION}"
|
|
PREFERRED_VERSION_nativesdk-gcc-sanitizers ?= "${SDKGCCVERSION}"
|
|
PREFERRED_VERSION_libgcc ?= "${GCCVERSION}"
|
|
PREFERRED_VERSION_libgcc-initial ?= "${GCCVERSION}"
|
|
PREFERRED_VERSION_libgfortran ?= "${GCCVERSION}"
|
|
PREFERRED_VERSION_nativesdk-gcc ?= "${SDKGCCVERSION}"
|
|
PREFERRED_VERSION_nativesdk-libgcc ?= "${SDKGCCVERSION}"
|
|
PREFERRED_VERSION_nativesdk-libgcc-initial ?= "${SDKGCCVERSION}"
|
|
|
|
PREFERRED_VERSION_glibc ?= "${GLIBCVERSION}"
|
|
PREFERRED_VERSION_glibc-locale ?= "${GLIBCVERSION}"
|
|
PREFERRED_VERSION_glibc-mtrace ?= "${GLIBCVERSION}"
|
|
PREFERRED_VERSION_glibc-scripts ?= "${GLIBCVERSION}"
|
|
PREFERRED_VERSION_nativesdk-glibc ?= "${GLIBCVERSION}"
|
|
PREFERRED_VERSION_cross-localedef-native ?= "${GLIBCVERSION}"
|
|
|
|
# Rust toolchain preferred versions:
|
|
|
|
PREFERRED_VERSION_cargo ?= "${RUSTVERSION}"
|
|
PREFERRED_VERSION_cargo-native ?= "${RUSTVERSION}"
|
|
PREFERRED_VERSION_libstd-rs ?= "${RUSTVERSION}"
|
|
PREFERRED_VERSION_rust ?= "${RUSTVERSION}"
|
|
PREFERRED_VERSION_rust-cross-${TARGET_ARCH} ?= "${RUSTVERSION}"
|
|
PREFERRED_VERSION_rust-llvm ?= "${RUSTVERSION}"
|
|
PREFERRED_VERSION_rust-llvm-native ?= "${RUSTVERSION}"
|
|
PREFERRED_VERSION_rust-native ?= "${RUSTVERSION}"
|
|
|