blob: 54c1004ad8f1bfe4477155ef1d9ccb5c86a65152 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
include gcc-cross_${PV}.oe
DEPENDS := virtual/${TARGET_SYS}-binutils \
virtual/glibc-headers patcher
PROVIDES := virtual/${TARGET_SYS}-gcc-initial
EXTRA_OECONF := --with-local-prefix=${CROSS_DIR}/usr/local \
--with-gxx-include-dir=${CROSS_DIR}/${TARGET_SYS}/include/c++ \
--enable-target-optspace \
--disable-nls \
--with-gnu-ld \
--enable-languages=c \
--disable-shared \
--enable-multilib \
--program-prefix=${TARGET_SYS}-
|