summaryrefslogtreecommitdiffstats
path: root/meta/packages/gcc/gcc-native.inc
diff options
context:
space:
mode:
Diffstat (limited to 'meta/packages/gcc/gcc-native.inc')
-rw-r--r--meta/packages/gcc/gcc-native.inc24
1 files changed, 0 insertions, 24 deletions
diff --git a/meta/packages/gcc/gcc-native.inc b/meta/packages/gcc/gcc-native.inc
deleted file mode 100644
index 635b01353a..0000000000
--- a/meta/packages/gcc/gcc-native.inc
+++ /dev/null
@@ -1,24 +0,0 @@
1DEPENDS = ""
2PACKAGES = ""
3PROVIDES = "gcc-native-${PV}"
4
5inherit native
6
7# This is intended to be a -very- basic config
8EXTRA_OECONF = "--with-local-prefix=${STAGING_DIR_TARGET}${prefix} \
9 --with-newlib \
10 --disable-shared \
11 --disable-threads \
12 --disable-multilib \
13 --disable-__cxa_atexit \
14 --enable-languages=c \
15 --enable-target-optspace \
16 --program-prefix=${TARGET_PREFIX}"
17
18NATIVE_INSTALL_WORKS = "1"
19do_install () {
20 cd gcc
21 oe_runmake 'DESTDIR=${D}' install-common install-headers install-libgcc
22 install -d ${D}${bindir}/
23 install -m 0755 xgcc ${D}${bindir}/gcc-${PV}
24}