summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/recipes-devtools/gcc/libgcc-common.inc8
1 files changed, 7 insertions, 1 deletions
diff --git a/meta/recipes-devtools/gcc/libgcc-common.inc b/meta/recipes-devtools/gcc/libgcc-common.inc
index dae07e96da..0a6ea64f50 100644
--- a/meta/recipes-devtools/gcc/libgcc-common.inc
+++ b/meta/recipes-devtools/gcc/libgcc-common.inc
@@ -111,9 +111,15 @@ fakeroot python do_multilib_install() {
111 if not tune_bitness: 111 if not tune_bitness:
112 tune_bitness = '32' # /lib => 32bit lib 112 tune_bitness = '32' # /lib => 32bit lib
113 113
114 tune_abiextension = tune_parameters['abiextension']
115 if tune_abiextension:
116 libcextension = '-gnu' + tune_abiextension
117 else:
118 libcextension = ''
119
114 src = '../../../' + tune_baselib + '/' + \ 120 src = '../../../' + tune_baselib + '/' + \
115 tune_arch + d.getVar('TARGET_VENDOR', True) + 'ml' + ml + \ 121 tune_arch + d.getVar('TARGET_VENDOR', True) + 'ml' + ml + \
116 '-' + d.getVar('TARGET_OS', True) + '/' + binv + '/' 122 '-' + d.getVar('TARGET_OS', True) + libcextension + '/' + binv + '/'
117 123
118 dest = d.getVar('D', True) + d.getVar('libdir', True) + '/' + \ 124 dest = d.getVar('D', True) + d.getVar('libdir', True) + '/' + \
119 d.getVar('TARGET_SYS', True) + '/' + binv + '/' + tune_bitness 125 d.getVar('TARGET_SYS', True) + '/' + binv + '/' + tune_bitness