$ tar -jxvf crosstool-ng-linaro-1.13.1-4.8-2014.03.tar.bz2
$ cd crosstool-ng-linaro-1.13.1-4.8-2014.03
$ ./configure // for more configure options type ./configure --help
$ make
$ sudo make install // by default the install location is /usr/local/bin for binary files, /usr/local/lib for library files and /usr/local/share for manuals.$ mkdir linaro-gcc-build$ cd linaro-gcc-build$ ct-ng list-samples // list all samples of crosstool configuration, you can use one of them corresponding to downloaded source code$ ct-ng linaro-arm-linux-gnueabihf //create configuration for toolchain compilation$ ct-ng menuconfig // shows all configurations in a menu, you are allowed to explore and make changes. // if you download the toolchain source code, proceed to untar him and change in menuconfig option "Paths and misc options" / "Local tarballs directory" and // specify the location of the untar source code directory $ ct-ng build // build the toolchain
Hello, as I mentioned in previous emails I cannot build the Linaro toolchain. I type the following commands:wget http://releases.linaro.org/14.05/components/toolchain/binaries/gcc-linaro-arm-linux-gnueabihf-4.9-2014.05_linux.tar.xz
tar -xf gcc-linaro-arm-linux-gnueabihf-4.9-2014.05_linux.tar.xz
cd gcc-linaro-arm-linux-gnueabihf-4.9-2014.05_linuxsudo su
apt-get build-dep gcc binutils gdb
apt-get install texlive flipcd lib
wget http://releases.linaro.org/14.04/components/toolchain/binaries/crosstool-ng-linaro-1.13.1-4.8-2014.04.tar.bz2
tar -xf crosstool-ng-linaro-1.13.1-4.8-2014.04.tar.bz2
cd crosstool-ng-linaro-1.13.1-4.8-2014.04
rm "USE_LSBCC ?= CT_BUILD_USE_LSBCC=y" from contrib/linaro/build.mk
make -f contrib/linaro/build.mk TARGETS=... HOST=linux***********ERROR: I get the following error*********************************************make: contrib/linaro/build.mk: No such file or directory
make: *** No rule to make target `contrib/linaro/build.mk'. Stop.*********************************************************************************There is no build.ml file .What is wrong?Also, I do not understand what exactly to do below. Any help?*Building requires /bin/sh to be bash. See http://crosstool-ng.org/ for more
* Download the `src` archive
* Download and extract the crosstool-NG tarball
* Change to the crosstool-NG directory
* Extract the `src` archive giving `tarballs/binutils-*` and similarThank youPapadopoulos Haris