blob: 3cf20a45894a97b49591dc0db9e86c06221511de (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
DEPENDS = ""
PACKAGES = ""
PROVIDES = "gcc-native-${PV}"
inherit native
FILESDIR = "${@os.path.dirname(bb.data.getVar('FILE',d,1))}/gcc-${PV}"
# 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}
}
|