summaryrefslogtreecommitdiff
path: root/packages/gcc/gcc-native.inc
diff options
context:
space:
mode:
authorRichard Purdie <rpurdie@rpsys.net>2007-12-30 18:31:48 +0000
committerRichard Purdie <rpurdie@rpsys.net>2007-12-30 18:31:48 +0000
commitcc2ba755d5ef5a3dd865f2dc173b3f8142e520a5 (patch)
tree155a98f594becaca4a5afa3eb340d70d459f130c /packages/gcc/gcc-native.inc
parent99d6885374c4957e8a1b61c4dc23a7d770f3f6d9 (diff)
Add gcc-native-3.4.4 as a possibility to help with qemu issues
Diffstat (limited to 'packages/gcc/gcc-native.inc')
-rw-r--r--packages/gcc/gcc-native.inc28
1 files changed, 28 insertions, 0 deletions
diff --git a/packages/gcc/gcc-native.inc b/packages/gcc/gcc-native.inc
new file mode 100644
index 0000000000..3cf20a4589
--- /dev/null
+++ b/packages/gcc/gcc-native.inc
@@ -0,0 +1,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}
+}