Skip to content

Commit 32fc9c5

Browse files
khasanovaakarupayun
authored andcommitted
[BACKEND] Update gcc debian package to point to a version 14.1.0-2 which exists in gcc-defaults. (triton-lang#4548)
The llvm build check is trying to get http://ftp.de.debian.org/debian/pool/main/g/gcc-defaults/gcc-aarch64-linux-gnu_13.2.0-7_amd64.deb, which does not exist and therefore fails. Updating the version to an existing one (14.1.0-2). [x] I am not making a trivial change, such as fixing a typo in a comment. [x] I have written a PR description following these [rules](https://cbea.ms/git-commit/#why-not-how). [x] I have run `pre-commit run --from-ref origin/main --to-ref HEAD`. [x] This PR does not need a test because it is not a functional change, should fix git checks builds. [x] I have not added any `lit` tests.
1 parent 87538e5 commit 32fc9c5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/llvm-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ jobs:
159159
cp -r /usr/aarch64-linux-gnu/lib ./arm-sysroot
160160
cp -r /usr/aarch64-linux-gnu/include ./arm-sysroot
161161
LINKER=$(pwd)/arm-sysroot/lib/ld-linux-aarch64.so.1
162-
wget http://ftp.de.debian.org/debian/pool/main/g/gcc-defaults/gcc-aarch64-linux-gnu_13.2.0-7_amd64.deb
162+
wget http://ftp.de.debian.org/debian/pool/main/g/gcc-defaults/gcc-aarch64-linux-gnu_14.1.0-2_amd64.deb
163163
dpkg-deb -x gcc-aarch64-linux-gnu_13.2.0-7_amd64.deb ./arm-sysroot
164164
export LD_LIBRARY_PATH=$(pwd)/arm-sysroot/lib:$LD_LIBRARY_PATH
165165
sudo ln -s $LINKER /lib/ld-linux-aarch64.so.1

0 commit comments

Comments
 (0)