main/scudo-malloc: disable check on ppc64le

This commit is contained in:
ptrcnull 2024-06-24 18:11:20 +02:00
parent 0ef988ffc1
commit 194708ee3c
No known key found for this signature in database
GPG key ID: 411F7B30801DD9CA

View file

@ -16,6 +16,14 @@ source="https://github.com/llvm/llvm-project/releases/download/llvmorg-${pkgver/
"
builddir="$srcdir/compiler-rt-${pkgver//_/}.src/lib/scudo/standalone"
case "$CARCH" in
ppc64le)
# tests/common_test.cpp:33: Failure
# Expected: (OnStart) > (0UL), actual: 0 vs 0
options="!check"
;;
esac
build() {
local cflags_crc32=
unset CXXFLAGS