mirror of
https://github.com/thead-yocto-mirror/meta-external-toolchain
synced 2026-09-06 07:54:37 +02:00
11 lines
505 B
Plaintext
11 lines
505 B
Plaintext
# FIXME: resolve gcc version mismatch issues with ${libdir}/gcc/*/<version>
|
|
# filesystem paths
|
|
python () {
|
|
if d.getVar('TCMODE', True).startswith('external-sourcery'):
|
|
# unwind.h will come from libgcc-external, we don't want to try to pull it
|
|
# from the cross area of the sysroot
|
|
inst = d.getVar('do_install', False).splitlines()
|
|
inst = filter(lambda l: not ('unwind.h' in l and '${STAGING_LIBDIR_NATIVE}' in l), inst)
|
|
d.setVar('do_install', '\n'.join(inst))
|
|
}
|