summaryrefslogtreecommitdiffstats
path: root/src/ci/docker/scripts/crosstool-ng-1.24.sh
blob: 3a40f6cddb3694140797d58f8dddda397221205f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh
set -ex

# Mirrored from https://github.com/crosstool-ng/crosstool-ng/archive/crosstool-ng-1.24.0.tar.gz
url="https://ci-mirrors.rust-lang.org/rustc/crosstool-ng-1.24.0.tar.gz"
curl -Lf $url | tar xzf -
cd crosstool-ng-crosstool-ng-1.24.0
./bootstrap
./configure --prefix=/usr/local
make -j$(nproc)
make install
cd ..
rm -rf crosstool-ng-crosstool-ng-1.24.0