diff options
author | Ken Werner <ken.werner@linaro.org> | 2012-05-31 11:02:52 +0200 |
---|---|---|
committer | Ken Werner <ken.werner@linaro.org> | 2012-05-31 11:02:52 +0200 |
commit | ff1b674025fec528f774b296bc1cf518eaf329ff (patch) | |
tree | 7fe246120db6e2f111a3ac4191e66387a2fb28e4 | |
parent | 323a98252ca7d66874532f1d6d4e4c8a4fd98e83 (diff) | |
download | meta-linaro-ff1b674025fec528f774b296bc1cf518eaf329ff.tar.gz |
external-linaro-toolchain fix to work with current OE-Core
Now works with again using the following configuration:
EXTERNAL_TOOLCHAIN = "/path/to/gcc-linaro-arm-linux-gnueabi-2012.03-20120326_linux"
TCMODE = "external-linaro"
IMAGE_LINGUAS = ""
LIMIT_BUILT_LOCALES = "POSIX"
DEFAULTTUNE = "armv7at"
ARM_INSTRUCTION_SET = "thumb"
Signed-off-by: Ken Werner <ken.werner@linaro.org>
-rw-r--r-- | recipes-devtools/external-linaro-toolchain/external-linaro-toolchain.bb | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/recipes-devtools/external-linaro-toolchain/external-linaro-toolchain.bb b/recipes-devtools/external-linaro-toolchain/external-linaro-toolchain.bb index c287e0c8..5a3f7c01 100644 --- a/recipes-devtools/external-linaro-toolchain/external-linaro-toolchain.bb +++ b/recipes-devtools/external-linaro-toolchain/external-linaro-toolchain.bb @@ -26,7 +26,7 @@ PROVIDES += "\ virtual/linux-libc-headers \ " PV = "${ELT_VER_MAIN}" -PR = "r0" +PR = "r1" # https://launchpad.net/linaro-toolchain-binaries # http://launchpad.net/linaro-toolchain-binaries/trunk/2012.03/+download/gcc-linaro-arm-linux-gnueabi-2012.03-20120326_linux.tar.bz2 @@ -84,9 +84,11 @@ PACKAGES =+ "\ linux-libc-headers-dev \ " -INSANE_SKIP_libgcc = "1" -INSANE_SKIP_libstdc++ = "1" -INSANE_SKIP_gdbserver = "1" +INSANE_SKIP_${PN}-dbg = "staticdev" +INSANE_SKIP_${PN}-utils += "ldflags" +INSANE_SKIP_libstdc++ += "ldflags" +INSANE_SKIP_libgcc += "ldflags" +INSANE_SKIP_gdbserver += "ldflags" PKG_${PN} = "eglibc" PKG_${PN}-dev = "eglibc-dev" |