mirror of
https://git.yoctoproject.org/poky
synced 2026-05-08 05:09:24 +00: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) Signed-off-by: Juro Bystricky <juro.bystricky@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
65107a9abe
commit
1b55ee1a48
@@ -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