arm-linux-gnueabihf-glibc-bin
Downloads a prebuilt toolchain tarball directly from ARM's official developer portal (developer.arm.com) with a sha256 checksum; the host is ARM's own infrastructure, not a personal/swappable source, so the only concern is that it installs prebuilt binaries rather than building from source, which is normal for cross-toolchain packaging.
Triggered rules
zero_votes_recent
Uploaded within the last 14 days with 2 or fewer community votes — little peer review so far.
llm_review
The static rules flagged this MEDIUM, but an AI model (anthropic/claude-sonnet-4.6) reviewed the full PKGBUILD and judged it LOW (confidence 85%): Downloads a prebuilt toolchain tarball directly from ARM's official developer portal (developer.arm.com) with a sha256 checksum; the host is ARM's own infrastructure, not a personal/swappable source, so the only concern is that it installs prebuilt binaries rather than building from source, which is normal for cross-toolchain packaging.
1 higher static finding superseded - not the current verdict (shown for transparency)
source_untrusted_domain
One or more source=() URLs point to a host outside the trusted allowlist (github.com, gitlab.com, codeberg.org, pypi.org, …).
-
PKGBUILD:18
source=("https://developer.arm.com/-/media/Files/downloads/gnu/${_toolchain_ver}/binrel/${_tarball}.tar.xz")
PKGBUILD
1 offending line(s) highlighted# Maintainer: pineappletoad
pkgname=arm-linux-gnueabihf-glibc-bin
_toolchain_ver=15.2.rel1
_toolchain_date=20251217
pkgver=${_toolchain_ver}.${_toolchain_date}
pkgrel=1
pkgdesc="glibc libraries for the arm-linux-gnueabihf cross target (precompiled, split from ARM's official GNU toolchain release)"
arch=('x86_64')
url="https://developer.arm.com/downloads/-/arm-gnu-toolchain-downloads"
license=('LGPL-2.1-or-later')
options=('!debug' '!strip')
provides=('arm-linux-gnueabihf-glibc')
conflicts=('arm-linux-gnueabihf-glibc')
depends=('arm-linux-gnueabihf-glibc-headers')
_tarball="arm-gnu-toolchain-${_toolchain_ver}-x86_64-arm-none-linux-gnueabihf"
source=("https://developer.arm.com/-/media/Files/downloads/gnu/${_toolchain_ver}/binrel/${_tarball}.tar.xz")
sha256sums=('3c65d820a6b8f677f8f6fbfc749fe00a4f16dde12341436c9df5b7092a47c0fb')
package() {
cd "${srcdir}/${_tarball}"
install -d "${pkgdir}/usr/arm-none-linux-gnueabihf"
cp -a arm-none-linux-gnueabihf/lib "${pkgdir}/usr/arm-none-linux-gnueabihf/"
cp -a arm-none-linux-gnueabihf/libc "${pkgdir}/usr/arm-none-linux-gnueabihf/"
install -Dm644 license.txt "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-04 03:57:33 | Low | 3 |
| 2026-09-04 03:56:15 | Medium | 2 |