Qtopia/X11: Install the right Qtopia XSession start script as well
[vuplus_openembedded] / packages / gcc / gcc-native.inc
1 DEPENDS = ""
2 PACKAGES = ""
3 PROVIDES = "gcc-native-${PV}"
4
5 inherit native
6
7 FILESDIR = "${@os.path.dirname(bb.data.getVar('FILE',d,1))}/gcc-${PV}"
8
9 # This is intended to be a -very- basic config
10 EXTRA_OECONF = "--with-local-prefix=${STAGING_DIR_TARGET}${layout_prefix} \
11                 --with-newlib \
12                 --disable-shared \
13                 --disable-threads \
14                 --disable-multilib \
15                 --disable-__cxa_atexit \
16                 --enable-languages=c \
17                 --enable-target-optspace \
18                 --program-prefix=${TARGET_PREFIX}"
19
20 do_install () {
21         :
22 }
23
24 do_stage () {
25         cd gcc
26         oe_runmake install-common install-headers install-libgcc
27         install -m 0755 xgcc ${STAGING_BINDIR}/gcc-${PV}
28 }