diff options
author | Richard Purdie <richard@openedhand.com> | 2007-01-08 20:53:25 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2007-01-08 20:53:25 +0000 |
commit | ba22e89b8e97f5008571957234bb3a1382c21628 (patch) | |
tree | 4cdc5678e866e3edf8766fdd1cf28b59286b2476 /meta/conf/distro/include/poky-eabi.inc | |
parent | 9b84bd945fe7d27c864b1e0d61e50498c624552b (diff) | |
download | poky-ba22e89b8e97f5008571957234bb3a1382c21628.tar.gz |
Promote eabi4 to become the eabi of choice for poky
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@1120 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/conf/distro/include/poky-eabi.inc')
-rw-r--r-- | meta/conf/distro/include/poky-eabi.inc | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/meta/conf/distro/include/poky-eabi.inc b/meta/conf/distro/include/poky-eabi.inc new file mode 100644 index 0000000000..63467b46ad --- /dev/null +++ b/meta/conf/distro/include/poky-eabi.inc | |||
@@ -0,0 +1,21 @@ | |||
1 | # | ||
2 | # Poky configuration to use EABI | ||
3 | # | ||
4 | |||
5 | PREFERRED_PROVIDER_virtual/arm-poky-linux-gnueabi-libc-for-gcc = "glibc-intermediate" | ||
6 | PREFERRED_PROVIDER_virtual/arm-linux-libc-for-gcc = "glibc-intermediate" | ||
7 | |||
8 | PREFERRED_VERSION_gcc ?= "4.1.1" | ||
9 | PREFERRED_VERSION_gcc-cross ?= "4.1.1" | ||
10 | PREFERRED_VERSION_gcc-cross-initial ?= "4.1.1" | ||
11 | PREFERRED_VERSION_binutils ?= "2.17.50.0.5" | ||
12 | PREFERRED_VERSION_binutils-cross ?= "2.17.50.0.5" | ||
13 | PREFERRED_VERSION_linux-libc-headers ?= "2.6.15.99" | ||
14 | PREFERRED_VERSION_glibc ?= "2.5" | ||
15 | PREFERRED_VERSION_glibc-intermediate ?= "2.5" | ||
16 | PREFERRED_VERSION_glibc-initial ?= "2.5" | ||
17 | PREFERRED_VERSION_elfutils ?= "0.108" | ||
18 | |||
19 | #Use the ARM EABI when building for an ARM cpu. We can't use overrides | ||
20 | #here because this breaks all places where ":=" is used. | ||
21 | TARGET_OS = "linux${@['','-gnueabi'][bb.data.getVar('TARGET_ARCH',d,1)=='arm']}" | ||