generic-poky/meta/packages/gcc/gcc-native.inc
Richard Purdie 1255ee64ee gcc: Merge in the major cleanup I made in OE.dev
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@4038 311d38ba-8fff-0310-9ca6-ca027cbcb966
2008-03-18 10:41:39 +00:00

27 lines
554 B
PHP

DEPENDS = ""
PACKAGES = ""
PROVIDES = "gcc-native-${PV}"
inherit native
# This is intended to be a -very- basic config
EXTRA_OECONF = "--with-local-prefix=${STAGING_DIR_TARGET}${layout_prefix} \
--with-newlib \
--disable-shared \
--disable-threads \
--disable-multilib \
--disable-__cxa_atexit \
--enable-languages=c \
--enable-target-optspace \
--program-prefix=${TARGET_PREFIX}"
do_install () {
:
}
do_stage () {
cd gcc
oe_runmake install-common install-headers install-libgcc
install -m 0755 xgcc ${STAGING_BINDIR}/gcc-${PV}
}