Files
meta-external-toolchain/core/recipes-devtools/gcc/gcc_%.bbappend
Christopher Larson b56cf21d51 libgcc,gcc-runtime: align TARGET_SYS/EXTERNAL_TARGET_SYS
Signed-off-by: Christopher Larson <kergoth@gmail.com>
2015-04-14 09:15:52 -07:00

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))
}