mirror of
https://github.com/openharmony/third_party_rust_libc.git
synced 2026-07-01 21:34:09 -04:00
0e57942c36
Signed-off-by: ljy9810 <longjianyin@h-partners.com>
12 lines
258 B
Bash
12 lines
258 B
Bash
#!/usr/bin/env sh
|
|
|
|
set -eux
|
|
|
|
ndk=android-ndk-r27
|
|
wget --tries=20 -q "https://dl.google.com/android/repository/${ndk}-linux.zip"
|
|
unzip -q "${ndk}-linux.zip"
|
|
|
|
mv "./${ndk}/toolchains/llvm/prebuilt/linux-x86_64" /android
|
|
|
|
rm -rf "./${ndk}-linux.zip" "./${ndk}"
|