update toolchain md5sums and git ref

This commit is contained in:
Kevin Mihelich 2016-02-23 19:18:58 -07:00
parent dc917d938e
commit 64193aa60b

View file

@ -13,22 +13,22 @@ In lieu of building the toolchain as detailed below, if you are running a 64-bit
It is *highly recommended* to use these tarballs as they have been thoroughly tested, and are maintained to be version- and source-matched to the current toolchain components for our ARM architectures. If you build the toolchain yourself, you must assemble patched source tarballs to build versions that match what is in use here.
* [ARMv5te soft](/builder/xtools/x-tools.tar.xz) (8463ba05d3b2b740a7faffd64bc336a4)
* [ARMv6l hard](/builder/xtools/x-tools6h.tar.xz) (77f235aba187a7026e2523f7a61a8e9e)
* [ARMv7l hard](/builder/xtools/x-tools7h.tar.xz) (ebc832213819404d497509949227ba79)
* [ARMv8](/builder/xtools/x-tools8.tar.xz) (78d4e85721bffb892f8d0a5345082c32)
* [ARMv5te soft](/builder/xtools/x-tools.tar.xz) (e6ed76ee68876ad0a88c1959c7a1894b)
* [ARMv6l hard](/builder/xtools/x-tools6h.tar.xz) (80ab8403a843da1cf1c51b9ee3f8b634)
* [ARMv7l hard](/builder/xtools/x-tools7h.tar.xz) (e722e2e93af5c62fab5251f26fdaf3b8)
* [ARMv8](/builder/xtools/x-tools8.tar.xz) (336a26f915893a49c66fc7e30d1cc60b)
If you want to save yourself time and configuration, see [WarheadsSE's distccd-alarm](https://github.com/WarheadsSE/PKGs/tree/master/distccd-alarm) package. This will generate 3 packages (one for each architecture), and contains configuration and systemd service units for each. It is for x86_64 only, like these toolchain tarballs.
## Install crosstool-ng
This process is very automated, courtesy of [crosstool-ng](http://crosstool-ng.org). As a normal user (<b>not root!</b>), clone revision b634280 of the git repository into a directory called "cross" in your home directory. Enter the source directory and configure with a prefix for the "cross" directory, make, and make install. If you are missing any pre-requisites, the configure script will let you know what they are.
This process is very automated, courtesy of [crosstool-ng](http://crosstool-ng.org). As a normal user (<b>not root!</b>), clone revision 6df2abc of the git repository into a directory called "cross" in your home directory. Enter the source directory and configure with a prefix for the "cross" directory, make, and make install. If you are missing any pre-requisites, the configure script will let you know what they are.
```
mkdir -p cross/src
cd cross
git clone https://github.com/crosstool-ng/crosstool-ng.git
cd crosstool-ng
git checkout b634280
git checkout 6df2abc
./bootstrap
./configure --prefix=/home/your_user/cross
make