mirror of
https://git.yoctoproject.org/poky
synced 2026-07-26 13:17:45 +02:00
* GCC 12.1 or later is now required to build the GNU C Library. * GNU Binutils 2.39 or later is now required to build the GNU C Library. * Support for lightweight stack guard pages via madvise and the MADV_GUARD_INSTALL flag has been added to pthread_create. * This is major release, changelog [1] [1] https://sourceware.org/pipermail/libc-announce/2025/000048.html (From OE-Core rev: 7c55e2da96f40ee0e40f6fd534573ce64013145c) Signed-off-by: Khem Raj <raj.khem@gmail.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 ?= "15.%"
|
|
SDKGCCVERSION ?= "${GCCVERSION}"
|
|
GLIBCVERSION ?= "2.42%"
|
|
RUSTVERSION ?= "1.88.0%"
|
|
|
|
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}"
|
|
|