blob: b0932f520d450408907a7a6323bfa4c89ebe2013 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
require gcc-cross_${PV}.bb
require gcc-cross-intermediate.inc
DEPENDS += "gmp-native mpfr-native"
EXTRA_OECONF += " --disable-libmudflap \
--disable-libgomp \
--disable-libssp"
# Hack till we fix *libc properly
do_stage_append() {
ln -sf ${CROSS_DIR}/lib/gcc/${TARGET_SYS}/${BINV}/include-fixed/* ${CROSS_DIR}/lib/gcc/${TARGET_SYS}/${BINV}/include/
}
|