I use a external pre-build binary toolchain got from freescale, and follow the instructions list in linaro wik. Follow that directions, I add the meta-linaro(master branch) layer to my conf/local.conf in front of the openembedded/meta layer, and add the EXTERNAL_TOOLCHAIN
and TCMODE
GCCVERSION
variable as below:
GCCVERSION = "linaro-4.6"
SDKGCCVERSION = "linaro-4.6"
EXTERNAL_TOOLCHAIN = "/extdisk/yocto/88/arm-fsl-linux-gnueabi/4.6.2"
TCMODE = "external-linaro"
IMAGE_LINGUAS = ""
LIMIT_BUILT_LOCALES = "POSIX"
DEFAULTTUNE_qemuarmv7a = "armv7athf-neon"
And my toolchian version detail information is:
Using built-in specs.
COLLECT_GCC=./prebuilt/toolchains/arm-fsl-linux-gnueabi/4.6.2/bin/arm-fsl-linux-gnueabi-gcc
COLLECT_LTO_WRAPPER=/home/hexiongjun/SmartAuto/prebuilt/toolchains/arm-fsl-linux-gnueabi/4.6.2/bin/../libexec/gcc/arm-fsl-linux-gnueabi/4.6.2/lto-wrapper
Target: arm-fsl-linux-gnueabi
Configured with: /work/build/.build/src/gcc-linaro-4.6-2011.06-0/configure --build=i686-build_pc-linux-gnu --host=i686-build_pc-linux-gnu --target=arm-fsl-linux-gnueabi --prefix=/work/fsl-linaro-toolchain-2.13 --with-sysroot=/work/fsl-linaro-toolchain-2.13/arm-fsl-linux-gnueabi/multi-libs --enable-languages=c,c++ --with-pkgversion='Freescale MAD -- Linaro 2011.07 -- Built at 2011/08/10 09:20' --enable-__cxa_atexit --disable-libmudflap --disable-libgomp --disable-libssp --with-gmp=/work/build/.build/arm-fsl-linux-gnueabi/build/static --with-mpfr=/work/build/.build/arm-fsl-linux-gnueabi/build/static --with-mpc=/work/build/.build/arm-fsl-linux-gnueabi/build/static --with-ppl=/work/build/.build/arm-fsl-linux-gnueabi/build/static --with-cloog=/work/build/.build/arm-fsl-linux-gnueabi/build/static --with-libelf=/work/build/.build/arm-fsl-linux-gnueabi/build/static --with-host-libstdcxx='-static-libgcc -Wl,-Bstatic,-lstdc++,-Bdynamic -lm -L/work/build/.build/arm-fsl-linux-gnueabi/build/static/lib -lpwl' --enable-threads=posix --enable-target-optspace --enable-plugin --enable-multilib --with-local-prefix=/work/fsl-linaro-toolchain-2.13/arm-fsl-linux-gnueabi/multi-libs --disable-nls --enable-c99 --enable-long-long --with-system-zlib
Thread model: posix
gcc version 4.6.2 20110630 (prerelease) (Freescale MAD -- Linaro 2011.07 -- Built at 2011/08/10 09:20)
When I using bitbake -v core-image-minimal
to build image, error occurs:
$ bitbake -v core-image-minimal
Pseudo is not present but is required, building this first before the main build
ERROR: Execution of event handler 'external_linaro_toolchain_version_handler' failed
Traceback (most recent call last):
File "external_linaro_toolchain_version_handler(e)", line 8, in external_linaro_toolchain_version_handler(e=<bb.event.ConfigParsed object at 0x17ed4d0>)
File "external-linaro-toolchain-versions.inc", line 4, in elt_get_main_version(d=<bb.data_smart.DataSmart object at 0x17ed390>)
IndexError: list index out of range
ERROR: Layer 'linaro' depends on layer 'networking-layer', but this layer is not enabled in your configuration
Summary: There were 2 ERROR messages shown, returning a non-zero exit code.
I don`t know what's going wrong, can anyone help me?
I was getting a similar message
It turned out it was the very last error that was the cause of my problems... I needed to install the ncurses libs
Your output has one line that might be the issue