From 3c58ddae78e7aca6edee32d12aa2fdc39199f48a Mon Sep 17 00:00:00 2001 From: Oliver Smith Date: Mon, 12 May 2025 07:12:12 +0200 Subject: [PATCH] cross/gcc-x86_64: fix depends line for aarch64 The gcc-x86_64 is only built for aarch64. Set the depends line to so:libc.musl-aarch64.so.1 as we had it before 42a50731 ("cross/gcc-*: upgrade to 14.2.0-r6"). I had set it to so:libc.musl-x86_64.so.1 like the other cross gccs by accident. [ci:skip-build]: I'll verify it builds locally before merge. [ci:skip-vercheck]: version not bumped intentionally. Part-of: https://gitlab.postmarketos.org/postmarketOS/pmaports/-/merge_requests/6501 --- cross/gcc-x86_64/APKBUILD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cross/gcc-x86_64/APKBUILD b/cross/gcc-x86_64/APKBUILD index e3fdff7af..3c5be1bb3 100644 --- a/cross/gcc-x86_64/APKBUILD +++ b/cross/gcc-x86_64/APKBUILD @@ -40,7 +40,7 @@ url="https://gcc.gnu.org" arch="aarch64" license="GPL-2.0-or-later AND LGPL-2.1-or-later" _gccrel=$pkgver-r$pkgrel -depends="binutils-x86_64 mpc1 so:libc.musl-x86_64.so.1 so:libgcc_s.so.1 so:libgmp.so.10 so:libisl.so.23 so:libmpc.so.3 so:libmpfr.so.6 so:libstdc++.so.6 so:libz.so.1" +depends="binutils-x86_64 mpc1 so:libc.musl-aarch64.so.1 so:libgcc_s.so.1 so:libgmp.so.10 so:libisl.so.23 so:libmpc.so.3 so:libmpfr.so.6 so:libstdc++.so.6 so:libz.so.1" makedepends_build="gcc g++ bison flex texinfo gawk zip gmp-dev mpfr-dev mpc1-dev zlib-dev" makedepends_host="linux-headers gmp-dev mpfr-dev mpc1-dev isl-dev zlib-dev musl-dev-x86_64 binutils-x86_64" subpackages="g++-x86_64:gpp libstdc++-dev-x86_64:libcxx_dev"