mirror of
https://git.yoctoproject.org/poky
synced 2026-02-08 01:36:38 +01:00
libgcc-common.inc: Fix broken symlinks for multilib SDK
This patch fixes broken "32" symlinks for multilib settings: MACHINE = "qemuarm64" require conf/multilib.conf MULTILIBS = "multilib:lib32" DEFAULTTUNE_virtclass-multilib-lib32 = "armv7a" and MACHINE = "qemux86-64" require conf/multilib.conf MULTILIBS = "multilib:libx32" DEFAULTTUNE_virtclass-multilib-libx32 = "x86-64-x32" [YOCTO#8642] [YOCTO#10380] (From OE-Core rev: 2810671a0f96776c135137f27a5ca52194ddd692) (From OE-Core rev: 1c9a1b518d4c653799d4f6ca4bc5ef191fa8a349) Signed-off-by: Juro Bystricky <juro.bystricky@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Armin Kuster <akuster808@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
57531002b8
commit
2cb87d12d2
@@ -111,9 +111,15 @@ fakeroot python do_multilib_install() {
|
||||
if not tune_bitness:
|
||||
tune_bitness = '32' # /lib => 32bit lib
|
||||
|
||||
tune_abiextension = tune_parameters['abiextension']
|
||||
if tune_abiextension:
|
||||
libcextension = '-gnu' + tune_abiextension
|
||||
else:
|
||||
libcextension = ''
|
||||
|
||||
src = '../../../' + tune_baselib + '/' + \
|
||||
tune_arch + d.getVar('TARGET_VENDOR', True) + 'ml' + ml + \
|
||||
'-' + d.getVar('TARGET_OS', True) + '/' + binv + '/'
|
||||
'-' + d.getVar('TARGET_OS', True) + libcextension + '/' + binv + '/'
|
||||
|
||||
dest = d.getVar('D', True) + d.getVar('libdir', True) + '/' + \
|
||||
d.getVar('TARGET_SYS', True) + '/' + binv + '/' + tune_bitness
|
||||
|
||||
Reference in New Issue
Block a user