diff options
author | Richard Purdie <richard@openedhand.com> | 2008-07-18 15:42:25 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2008-07-18 15:42:25 +0000 |
commit | 756a1d703794413faff4f7cb261c64693d95c684 (patch) | |
tree | 00cec0df60eec9953476f999f490d80c86082d4b | |
parent | 4fcf8e17bafd68a88b1024d1b45863229b50f138 (diff) | |
download | poky-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
-rw-r--r-- | meta/conf/distro/include/poky-eabi.inc | 21 |
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 | ||
6 | TARGET_VENDOR = "-poky" | 7 | TARGET_VENDOR = "-poky" |
@@ -11,11 +12,19 @@ PREFERRED_PROVIDER_virtual/${TARGET_PREFIX}gcc-initial = "gcc-cross-initial" | |||
11 | PREFERRED_PROVIDER_virtual/${TARGET_PREFIX}gcc = "gcc-cross" | 12 | PREFERRED_PROVIDER_virtual/${TARGET_PREFIX}gcc = "gcc-cross" |
12 | PREFERRED_PROVIDER_virtual/${TARGET_PREFIX}g++ = "gcc-cross" | 13 | PREFERRED_PROVIDER_virtual/${TARGET_PREFIX}g++ = "gcc-cross" |
13 | 14 | ||
14 | PREFERRED_VERSION_gcc ?= "4.2.3" | 15 | GCCVERSION = "4.2.3" |
15 | PREFERRED_VERSION_gcc-cross ?= "4.2.3" | 16 | GCCVERSION_beagleboard = "4.3.1" |
16 | PREFERRED_VERSION_gcc-cross-initial ?= "4.2.3" | 17 | GCCVERSION_omap-3430sdp = "4.3.1" |
17 | PREFERRED_VERSION_binutils ?= "2.18" | 18 | GCCVERSION_omap-3430ldp = "4.3.1" |
18 | PREFERRED_VERSION_binutils-cross ?= "2.18" | 19 | # 4.2.3+csl-arm-2008q1-126 doesn't work |
20 | |||
21 | BINUVERSION = "2.18" | ||
22 | |||
23 | PREFERRED_VERSION_gcc ?= "${GCCVERSION}" | ||
24 | PREFERRED_VERSION_gcc-cross ?= "${GCCVERSION}" | ||
25 | PREFERRED_VERSION_gcc-cross-initial ?= "${GCCVERSION}" | ||
26 | PREFERRED_VERSION_binutils ?= "${BINUVERSION}" | ||
27 | PREFERRED_VERSION_binutils-cross ?= "${BINUVERSION}" | ||
19 | PREFERRED_VERSION_linux-libc-headers ?= "2.6.24" | 28 | PREFERRED_VERSION_linux-libc-headers ?= "2.6.24" |
20 | PREFERRED_VERSION_glibc ?= "2.6.1" | 29 | PREFERRED_VERSION_glibc ?= "2.6.1" |
21 | PREFERRED_VERSION_glibc-intermediate ?= "2.6.1" | 30 | PREFERRED_VERSION_glibc-intermediate ?= "2.6.1" |