mirror of
https://github.com/thead-yocto-mirror/meta-external-toolchain
synced 2026-09-16 20:22:17 +02:00
With this, we can avoid the need to create a symlink for the multilib sysroot suffix. This also adds a nativesdk package to the sdk to adjust the environment setup there to use it as well. JIRA: SB-6018 Signed-off-by: Christopher Larson <chris_larson@mentor.com>
7 lines
284 B
PHP
7 lines
284 B
PHP
SYSROOT_PREPROCESS_FUNCS += "external_toolchain_sysroot_adjust"
|
|
external_toolchain_sysroot_adjust() {
|
|
# If the usr/lib directory doesn't exist, the toolchain fails to even
|
|
# try to find crti.o in a completely different directory (usr/lib64)
|
|
install -d ${SYSROOT_DESTDIR}/usr/lib
|
|
}
|