2018-11-19 15:49:56 +01:00
|
|
|
#!/usr/bin/env sh
|
2016-11-16 23:12:12 +01:00
|
|
|
# Copyright 2016 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
|
|
|
|
|
2019-05-16 12:17:37 +02:00
|
|
|
NDK=android-ndk-r19c
|
2019-05-23 19:10:58 +02:00
|
|
|
curl --retry 20 -O https://dl.google.com/android/repository/${NDK}-linux-x86_64.zip
|
2019-05-16 12:17:37 +02:00
|
|
|
unzip -q ${NDK}-linux-x86_64.zip
|
2017-02-23 20:08:29 +01:00
|
|
|
|
|
|
|
case "$1" in
|
2019-05-16 12:17:37 +02:00
|
|
|
arm)
|
|
|
|
arch=arm
|
|
|
|
api=24
|
|
|
|
;;
|
|
|
|
armv7)
|
|
|
|
arch=arm
|
|
|
|
api=24
|
|
|
|
;;
|
2017-02-23 20:08:29 +01:00
|
|
|
aarch64)
|
|
|
|
arch=arm64
|
2019-05-16 12:17:37 +02:00
|
|
|
api=24
|
2017-02-23 20:08:29 +01:00
|
|
|
;;
|
|
|
|
i686)
|
|
|
|
arch=x86
|
2019-05-16 12:17:37 +02:00
|
|
|
api=28
|
|
|
|
;;
|
|
|
|
x86_64)
|
|
|
|
arch=x86_64
|
|
|
|
api=28
|
2017-02-23 20:08:29 +01:00
|
|
|
;;
|
|
|
|
*)
|
2019-05-16 12:17:37 +02:00
|
|
|
echo "invalid arch: $1"
|
|
|
|
exit 1
|
2017-02-23 20:08:29 +01:00
|
|
|
;;
|
|
|
|
esac;
|
|
|
|
|
2019-05-16 12:17:37 +02:00
|
|
|
${NDK}/build/tools/make_standalone_toolchain.py \
|
2018-11-19 15:49:56 +01:00
|
|
|
--install-dir "/android/ndk-${1}" \
|
|
|
|
--arch "${arch}" \
|
2019-05-16 12:17:37 +02:00
|
|
|
--api ${api}
|
2016-11-16 23:12:12 +01:00
|
|
|
|
2019-05-16 12:17:37 +02:00
|
|
|
rm -rf ./${NDK}-linux-x86_64.zip ./${NDK}
|