Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1 | # 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 | |
| 6 | EXTRA_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 | " |