File tree 1 file changed +4
-9
lines changed
1 file changed +4
-9
lines changed Original file line number Diff line number Diff line change 2
2
3
3
export USE_CCACHE=1
4
4
export NDK_CCACHE=ccache
5
- NDK_VER=android-ndk-r10d
5
+ NDK_VER=android-ndk-r11c
6
6
7
7
download_extract () {
8
8
aria2c -x 16 $1 -o $2
9
9
tar -xf $2
10
10
}
11
11
12
12
# This is used for the Android NDK.
13
- download_extract_xz () {
13
+ download_extract_zip () {
14
14
aria2c --file-allocation=none --timeout=120 --retry-wait=5 --max-tries=20 -Z -c $1 -o $2
15
- stat -c ' ATTEMPT 1 - %s' $2
16
- md5sum $2
17
15
# This resumes the download, in case it failed.
18
16
aria2c --file-allocation=none --timeout=120 --retry-wait=5 --max-tries=20 -Z -c $1 -o $2
19
- stat -c ' ATTEMPT 2 - %s' $2
20
- md5sum $2
21
17
22
- # Keep some output going during the extract, so the build doesn't timeout.
23
- pv $2 | xz -vd | tar -x
18
+ unzip $2 2>&1 | pv > /dev/null
24
19
}
25
20
26
21
travis_before_install () {
@@ -63,7 +58,7 @@ travis_install() {
63
58
if [ " $PPSSPP_BUILD_TYPE " = " Android" ]; then
64
59
free -m
65
60
sudo apt-get install ant -qq
66
- download_extract_xz http://hdkr.co/ ${NDK_VER} -x86_64.tar.xz ${NDK_VER} -x86_64.tar.xz
61
+ download_extract_zip http://dl.google.com/android/repository/ ${NDK_VER} -linux- x86_64.zip ${NDK_VER} -linux- x86_64.zip
67
62
fi
68
63
69
64
# Blackberry NDK: 10.3.0.440 + GCC: 4.8.2
You can’t perform that action at this time.
0 commit comments