mirror of
https://git.proxmox.com/git/rustc
synced 2025-07-23 20:12:29 +00:00
25 lines
1007 B
Bash
Executable File
25 lines
1007 B
Bash
Executable File
# Copyright 2017 The Rust Project Developers. See the COPYRIGHT
|
|
# file at the top-level directory of this distribution and at
|
|
# http://rust-lang.org/COPYRIGHT.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
# http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
# <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
# option. This file may not be copied, modified, or distributed
|
|
# except according to those terms.
|
|
|
|
set -ex
|
|
|
|
mkdir /usr/local/mips-linux-musl
|
|
|
|
# originally from
|
|
# https://downloads.openwrt.org/snapshots/trunk/ar71xx/generic/
|
|
# OpenWrt-Toolchain-ar71xx-generic_gcc-5.3.0_musl-1.1.16.Linux-x86_64.tar.bz2
|
|
URL="https://s3.amazonaws.com/rust-lang-ci/rust-ci-mirror"
|
|
FILE="OpenWrt-Toolchain-ar71xx-generic_gcc-5.3.0_musl-1.1.16.Linux-x86_64.tar.bz2"
|
|
curl -L "$URL/$FILE" | tar xjf - -C /usr/local/mips-linux-musl --strip-components=2
|
|
|
|
for file in /usr/local/mips-linux-musl/bin/mips-openwrt-linux-*; do
|
|
ln -s $file /usr/local/bin/`basename $file`
|
|
done
|