blob: 8ed3f748709142c0ac3d48970a90ce5990d41e07 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
include gcc-uclibc-cross_${PV}.oe
DEPENDS := virtual/${TARGET_SYS}-binutils \
virtual/uclibc-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 \
--disable-__cxa_atexit \
--enable-languages=c \
--disable-shared \
--enable-multilib \
--program-prefix=${TARGET_SYS}-
|