diff options
author | Christopher Larson <chris_larson@mentor.com> | 2012-01-27 11:13:43 -0600 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-02-02 16:55:31 +0000 |
commit | ae21dc189f78e428a5c02ee90605843eacc1eb94 (patch) | |
tree | dbe6c253babd63e6b3e7a178992f488f7975fde9 /meta/recipes-core | |
parent | aa2c4e3879ec51ea117aa23c4917e9d137371099 (diff) | |
download | poky-ae21dc189f78e428a5c02ee90605843eacc1eb94.tar.gz |
external-csl-toolchain: fixes for metadata changes
These allow the recipe to build again:
- add compilerlibs, g++, libgcc to the provides
- add linux-libc-headers-dev to the packages
- in libc-package, only sed the ldd.bash.in file if it exists, as the external
toolchain is using that class as well
- shift the inherit location of the libc classes, as they were overriding the
recipe's do_install
- use ?= for EXTERNAL_TOOLCHAIN, so the user can set it
(From OE-Core rev: 8fb1c84f4cadf8d7a061fd6d90d270c19b474bfe)
Signed-off-by: Christopher Larson <chris_larson@mentor.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core')
-rw-r--r-- | meta/recipes-core/meta/external-csl-toolchain_2008q3-72.bb | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/meta/recipes-core/meta/external-csl-toolchain_2008q3-72.bb b/meta/recipes-core/meta/external-csl-toolchain_2008q3-72.bb index a874c8b15a..b5a3607657 100644 --- a/meta/recipes-core/meta/external-csl-toolchain_2008q3-72.bb +++ b/meta/recipes-core/meta/external-csl-toolchain_2008q3-72.bb | |||
@@ -1,7 +1,12 @@ | |||
1 | inherit libc-common | ||
2 | inherit libc-package | ||
3 | |||
1 | INHIBIT_DEFAULT_DEPS = "1" | 4 | INHIBIT_DEFAULT_DEPS = "1" |
2 | 5 | ||
3 | # License applies to this recipe code, not the toolchain itself | 6 | # License applies to this recipe code, not the toolchain itself |
4 | LICENSE = "MIT" | 7 | LICENSE = "MIT" |
8 | LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58 \ | ||
9 | file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" | ||
5 | 10 | ||
6 | PROVIDES = "\ | 11 | PROVIDES = "\ |
7 | linux-libc-headers \ | 12 | linux-libc-headers \ |
@@ -11,21 +16,22 @@ PROVIDES = "\ | |||
11 | virtual/arm-none-linux-gnueabi-gcc-intermediate \ | 16 | virtual/arm-none-linux-gnueabi-gcc-intermediate \ |
12 | virtual/arm-none-linux-gnueabi-binutils \ | 17 | virtual/arm-none-linux-gnueabi-binutils \ |
13 | virtual/arm-none-linux-gnueabi-libc-for-gcc \ | 18 | virtual/arm-none-linux-gnueabi-libc-for-gcc \ |
19 | virtual/arm-none-linux-gnueabi-compilerlibs \ | ||
14 | virtual/libc \ | 20 | virtual/libc \ |
15 | virtual/libintl \ | 21 | virtual/libintl \ |
16 | virtual/libiconv \ | 22 | virtual/libiconv \ |
17 | glibc-thread-db \ | 23 | glibc-thread-db \ |
24 | libgcc \ | ||
18 | virtual/linux-libc-headers " | 25 | virtual/linux-libc-headers " |
19 | RPROVIDES = "glibc-utils libsegfault glibc-thread-db" | 26 | RPROVIDES = "glibc-utils libsegfault glibc-thread-db" |
20 | PACKAGES_DYNAMIC = "glibc-gconv-*" | 27 | PACKAGES_DYNAMIC = "glibc-gconv-*" |
21 | PR = "r1" | 28 | PR = "r2" |
22 | 29 | ||
23 | #SRC_URI = "http://www.codesourcery.com/public/gnu_toolchain/arm-none-linux-gnueabi/arm-${PV}-arm-none-linux-gnueabi-i686-pc-linux-gnu.tar.bz2" | 30 | #SRC_URI = "http://www.codesourcery.com/public/gnu_toolchain/arm-none-linux-gnueabi/arm-${PV}-arm-none-linux-gnueabi-i686-pc-linux-gnu.tar.bz2" |
24 | 31 | ||
25 | SRC_URI = "file://SUPPORTED" | 32 | SRC_URI = "file://SUPPORTED" |
26 | 33 | ||
27 | do_install() { | 34 | do_install() { |
28 | echo "EXTERNAL_TOOLCHAIN is ${EXTERNAL_TOOLCHAIN}" | ||
29 | install -d ${D}${sysconfdir} ${D}${bindir} ${D}${sbindir} ${D}${base_bindir} ${D}${libdir} | 35 | install -d ${D}${sysconfdir} ${D}${bindir} ${D}${sbindir} ${D}${base_bindir} ${D}${libdir} |
30 | install -d ${D}${base_libdir} ${D}${base_sbindir} ${D}${datadir} | 36 | install -d ${D}${base_libdir} ${D}${base_sbindir} ${D}${datadir} |
31 | 37 | ||
@@ -40,10 +46,7 @@ do_install() { | |||
40 | 46 | ||
41 | GLIBC_INTERNAL_USE_BINARY_LOCALE ?= "compile" | 47 | GLIBC_INTERNAL_USE_BINARY_LOCALE ?= "compile" |
42 | 48 | ||
43 | inherit libc-common | 49 | PACKAGES += "libgcc libgcc-dev libstdc++ libstdc++-dev linux-libc-headers linux-libc-headers-dev" |
44 | inherit libc-package | ||
45 | |||
46 | PACKAGES += "libgcc libgcc-dev libstdc++ libstdc++-dev linux-libc-headers" | ||
47 | FILES_libgcc = "${base_libdir}/libgcc_s.so.1" | 50 | FILES_libgcc = "${base_libdir}/libgcc_s.so.1" |
48 | FILES_libgcc-dev = "${base_libdir}/libgcc_s.so" | 51 | FILES_libgcc-dev = "${base_libdir}/libgcc_s.so" |
49 | FILES_libstdc++ = "${libdir}/libstdc++.so.*" | 52 | FILES_libstdc++ = "${libdir}/libstdc++.so.*" |
@@ -61,4 +64,3 @@ FILES_linux-libc-headers = "${includedir}/asm* \ | |||
61 | ${includedir}/sound \ | 64 | ${includedir}/sound \ |
62 | ${includedir}/video \ | 65 | ${includedir}/video \ |
63 | " | 66 | " |
64 | |||