summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorRichard Purdie <richard@openedhand.com>2008-07-18 15:42:25 +0000
committerRichard Purdie <richard@openedhand.com>2008-07-18 15:42:25 +0000
commit756a1d703794413faff4f7cb261c64693d95c684 (patch)
tree00cec0df60eec9953476f999f490d80c86082d4b /meta
parent4fcf8e17bafd68a88b1024d1b45863229b50f138 (diff)
downloadpoky-756a1d703794413faff4f7cb261c64693d95c684.tar.gz
poky-eabi.inc: Use gcc 4.3.1 for armv7-a targets
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@4879 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta')
-rw-r--r--meta/conf/distro/include/poky-eabi.inc21
1 files changed, 15 insertions, 6 deletions
diff --git a/meta/conf/distro/include/poky-eabi.inc b/meta/conf/distro/include/poky-eabi.inc
index 4161b3633b..4687bae3d7 100644
--- a/meta/conf/distro/include/poky-eabi.inc
+++ b/meta/conf/distro/include/poky-eabi.inc
@@ -1,6 +1,7 @@
1# 1#
2# Poky's default configuration (ARM EABI) 2# Poky's default configuration (ARM EABI)
3# gcc 4.1.2, binutils 2.18, glibc 2.5 3# gcc 4.2.3, binutils 2.18, glibc 2.5
4# use gcc 4.3.1 for armv7 targets
4# 5#
5 6
6TARGET_VENDOR = "-poky" 7TARGET_VENDOR = "-poky"
@@ -11,11 +12,19 @@ PREFERRED_PROVIDER_virtual/${TARGET_PREFIX}gcc-initial = "gcc-cross-initial"
11PREFERRED_PROVIDER_virtual/${TARGET_PREFIX}gcc = "gcc-cross" 12PREFERRED_PROVIDER_virtual/${TARGET_PREFIX}gcc = "gcc-cross"
12PREFERRED_PROVIDER_virtual/${TARGET_PREFIX}g++ = "gcc-cross" 13PREFERRED_PROVIDER_virtual/${TARGET_PREFIX}g++ = "gcc-cross"
13 14
14PREFERRED_VERSION_gcc ?= "4.2.3" 15GCCVERSION = "4.2.3"
15PREFERRED_VERSION_gcc-cross ?= "4.2.3" 16GCCVERSION_beagleboard = "4.3.1"
16PREFERRED_VERSION_gcc-cross-initial ?= "4.2.3" 17GCCVERSION_omap-3430sdp = "4.3.1"
17PREFERRED_VERSION_binutils ?= "2.18" 18GCCVERSION_omap-3430ldp = "4.3.1"
18PREFERRED_VERSION_binutils-cross ?= "2.18" 19# 4.2.3+csl-arm-2008q1-126 doesn't work
20
21BINUVERSION = "2.18"
22
23PREFERRED_VERSION_gcc ?= "${GCCVERSION}"
24PREFERRED_VERSION_gcc-cross ?= "${GCCVERSION}"
25PREFERRED_VERSION_gcc-cross-initial ?= "${GCCVERSION}"
26PREFERRED_VERSION_binutils ?= "${BINUVERSION}"
27PREFERRED_VERSION_binutils-cross ?= "${BINUVERSION}"
19PREFERRED_VERSION_linux-libc-headers ?= "2.6.24" 28PREFERRED_VERSION_linux-libc-headers ?= "2.6.24"
20PREFERRED_VERSION_glibc ?= "2.6.1" 29PREFERRED_VERSION_glibc ?= "2.6.1"
21PREFERRED_VERSION_glibc-intermediate ?= "2.6.1" 30PREFERRED_VERSION_glibc-intermediate ?= "2.6.1"