Skip to content

Commit

Permalink
[aosp-clang] Get binutils from android12L-release branch
Browse files Browse the repository at this point in the history
  • Loading branch information
lemniskett committed Jun 13, 2023
1 parent 038d46f commit 9e43755
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -143,19 +143,19 @@ if [[ $arch = "arm64" ]]; then
err "Failed downloading toolchain, refer to the README for details"
exit 1
fi
url="https://android.googlesource.com/platform/prebuilts/gcc/linux-x86/aarch64/aarch64-linux-android-4.9/+archive/refs/heads/master.tar.gz"
url="https://android.googlesource.com/platform/prebuilts/gcc/linux-x86/aarch64/aarch64-linux-android-4.9/+archive/refs/heads/android12L-release.tar.gz"
echo "Downloading $url"
if ! wget --no-check-certificate "$url" -O /tmp/aosp-gcc-arm64.tar.gz &>/dev/null; then
err "Failed downloading toolchain, refer to the README for details"
exit 1
fi
url="https://android.googlesource.com/platform/prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.9/+archive/refs/heads/master.tar.gz"
url="https://android.googlesource.com/platform/prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.9/+archive/refs/heads/android12L-release.tar.gz"
echo "Downloading $url"
if ! wget --no-check-certificate "$url" -O /tmp/aosp-gcc-arm.tar.gz &>/dev/null; then
err "Failed downloading toolchain, refer to the README for details"
exit 1
fi
url="https://android.googlesource.com/platform/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.17-4.8/+archive/refs/heads/master.tar.gz"
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"
echo "Downloading $url"
if ! wget --no-check-certificate "$url" -O /tmp/aosp-gcc-host.tar.gz &>/dev/null; then
err "Failed downloading toolchain, refer to the README for details"
Expand Down

0 comments on commit 9e43755

Please sign in to comment.