1
0
mirror of https://git.yoctoproject.org/meta-arm synced 2026-05-02 03:19:02 +00:00

arm-toolchain/gcc: Workaround for missing libcrypt

gcc-arm-none-eabi and gcc-aarch64-none-elf both fails when packaged as
RPM for sdk with

nothing provides libcrypt.so.1()(64bit) needed by nativesdk-gcc-arm-none-eabi-12.2.rel1-r0.x86_64_nativesdk

As we don't control the dependencies for prebuilt libraries we create a
workaround by skipping the FILEDEPS

Signed-off-by: Claus Stovgaard <claus.stovgaard@gmail.com>
Signed-off-by: Jon Mason <jon.mason@arm.com>
This commit is contained in:
Claus Stovgaard
2023-06-06 10:31:43 +02:00
committed by Jon Mason
parent ca6df87315
commit 3fcafa3a94

View File

@@ -24,3 +24,8 @@ INHIBIT_PACKAGE_DEBUG_SPLIT = "1"
PRIVATE_LIBS = "libgcc_s.so.1 libstdc++.so.6"
BBCLASSEXTEND = "native nativesdk"
# Skipping file deps - we don't control the dependencies for prebuilt libraries, resulting in
# nothing provides libcrypt.so.1()(64bit) needed by nativesdk-gcc-arm-none-eabi
# when packaged as RPM for SDK.
SKIP_FILEDEPS="1"