blob: bfcda3d0d2d4daed743207b3610b9f8771d2cebc [file] [log] [blame]
Brad Bishop1a4b7ee2018-12-16 17:11:34 -08001# By using tclibc-baremetal we loose sysroot functionality due to some
2# append/override behavior We need to get that back , the following append
3# overrides everything on EXTRA_OECONF for gcc cross target it avoids
4# overlapping with crt0 because of --enable-linker-id from EXTRA_OECONF
5
6EXTRA_OECONF_BASE_pn-gcc-cross-${TARGET_ARCH}_append = " \
7 ${LTO} \
8 ${SSP} \
9 --enable-libitm \
10 --disable-bootstrap \
11 --disable-libmudflap \
12 --with-system-zlib \
13 --with-ppl=no \
14 --with-cloog=no \
15 --enable-checking=release \
16 --enable-cheaders=c_global \
17 --without-isl \
18"