blob: 5ee0a8ad6980ce901bbca14d0d3e7c6c61ddbee9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
include cross-gcc-${PV}.oe
EXTRA_OECONF = --oldincludedir=${prefix}/include --enable-shared \
--enable-languages=c \
--disable-shared \
--disable-threads
do_configure_append () {
if (grep -q TARGET_LIBGCC2_CFLAGS ${tmake_file}); then
perl -pi -e 's/^(TARGET_LIBGCC2_CFLAGS.*)/$$1 -Dinhibit_libc -D__gthr_posix_h/' ${tmake_file}
else
echo 'TARGET_LIBGCC2_CFLAGS = -Dinhibit_libc -D__gthr_posix_h' >> ${tmake_file}
fi
echo 'T_CFLAGS = -Dinhibit_libc -D__gthr_posix_h' >> ${tmake_file}
}
|