diff options
author | Richard Purdie <richard@openedhand.com> | 2006-08-27 16:13:31 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2006-08-27 16:13:31 +0000 |
commit | 72906f5da46e7f53070fba999457b9affb76e696 (patch) | |
tree | a8f3a6f376c94ce9763e1afd9c222c81d8cbcfe1 /meta/conf/distro/include/poky-eabi2.inc | |
parent | 93a8d0662ed361c76defe75a5cd84f203fdb1af1 (diff) | |
download | poky-72906f5da46e7f53070fba999457b9affb76e696.tar.gz |
conf/distro: Sync with OE
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@652 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/conf/distro/include/poky-eabi2.inc')
-rw-r--r-- | meta/conf/distro/include/poky-eabi2.inc | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/meta/conf/distro/include/poky-eabi2.inc b/meta/conf/distro/include/poky-eabi2.inc new file mode 100644 index 0000000000..2833f3090e --- /dev/null +++ b/meta/conf/distro/include/poky-eabi2.inc | |||
@@ -0,0 +1,20 @@ | |||
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.16.91.0.7" | ||
12 | PREFERRED_VERSION_binutils-cross ?= "2.16.91.0.7" | ||
13 | PREFERRED_VERSION_linux-libc-headers ?= "2.6.15.99" | ||
14 | PREFERRED_VERSION_glibc ?= "2.4" | ||
15 | PREFERRED_VERSION_glibc-intermediate ?= "2.4" | ||
16 | |||
17 | #Use the ARM EABI when building for an ARM cpu. We can't use overrides | ||
18 | #here because this breaks all places where ":=" is used. | ||
19 | TARGET_VENDOR = "${@['','-poky'][bb.data.getVar('TARGET_ARCH',d,1)=='arm']}" | ||
20 | TARGET_OS = "linux${@['','-gnueabi'][bb.data.getVar('TARGET_ARCH',d,1)=='arm']}" \ No newline at end of file | ||