From 85f7a398d55b10b9dd4364b816b8292acc88129b Mon Sep 17 00:00:00 2001 From: BtbN Date: Sat, 10 Aug 2024 13:33:35 +0200 Subject: [PATCH] GCC 14.2 segfaults when compiling libaom on arm --- scripts.d/50-aom.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts.d/50-aom.sh b/scripts.d/50-aom.sh index 78c6b98..82cd8e4 100755 --- a/scripts.d/50-aom.sh +++ b/scripts.d/50-aom.sh @@ -5,6 +5,8 @@ SCRIPT_COMMIT="5632ebed19fc472dae0cbe26a89552af0ee814dd" ffbuild_enabled() { [[ $TARGET == winarm64 ]] && return -1 + # GCC segfaults, remove when fixed + [[ $TARGET == linuxarm64 ]] && return -1 return 0 }