Skip to content

Commit 9e43755

Browse files
authored
[aosp-clang] Get binutils from android12L-release branch
1 parent 038d46f commit 9e43755

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

entrypoint.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -143,19 +143,19 @@ if [[ $arch = "arm64" ]]; then
143143
err "Failed downloading toolchain, refer to the README for details"
144144
exit 1
145145
fi
146-
url="https://android.googlesource.com/platform/prebuilts/gcc/linux-x86/aarch64/aarch64-linux-android-4.9/+archive/refs/heads/master.tar.gz"
146+
url="https://android.googlesource.com/platform/prebuilts/gcc/linux-x86/aarch64/aarch64-linux-android-4.9/+archive/refs/heads/android12L-release.tar.gz"
147147
echo "Downloading $url"
148148
if ! wget --no-check-certificate "$url" -O /tmp/aosp-gcc-arm64.tar.gz &>/dev/null; then
149149
err "Failed downloading toolchain, refer to the README for details"
150150
exit 1
151151
fi
152-
url="https://android.googlesource.com/platform/prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.9/+archive/refs/heads/master.tar.gz"
152+
url="https://android.googlesource.com/platform/prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.9/+archive/refs/heads/android12L-release.tar.gz"
153153
echo "Downloading $url"
154154
if ! wget --no-check-certificate "$url" -O /tmp/aosp-gcc-arm.tar.gz &>/dev/null; then
155155
err "Failed downloading toolchain, refer to the README for details"
156156
exit 1
157157
fi
158-
url="https://android.googlesource.com/platform/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.17-4.8/+archive/refs/heads/master.tar.gz"
158+
url="https://android.googlesource.com/platform/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.17-4.8/+archive/refs/heads/android12L-release.tar.gz"
159159
echo "Downloading $url"
160160
if ! wget --no-check-certificate "$url" -O /tmp/aosp-gcc-host.tar.gz &>/dev/null; then
161161
err "Failed downloading toolchain, refer to the README for details"

0 commit comments

Comments
 (0)