qt5-webkit: fix armv5* build

This commit is contained in:
Jürgen Buchmüller 2020-03-30 13:03:05 +02:00
parent 34432dd49f
commit c3ee5c7c7d
2 changed files with 15 additions and 1 deletions

View File

@ -0,0 +1,14 @@
--- Source/JavaScriptCore/assembler/MacroAssemblerMIPS.h 2019-08-15 20:56:14.000000000 +0200
+++ Source/JavaScriptCore/assembler/MacroAssemblerMIPS.h 2020-03-04 10:43:29.468482593 +0100
@@ -315,11 +315,7 @@
void countLeadingZeros32(RegisterID src, RegisterID dest)
{
-#if WTF_MIPS_ISA_AT_LEAST(32)
m_assembler.clz(dest, src);
-#else
- static_assert(false, "CLZ opcode is not available for this ISA");
-#endif
}
void lshift32(RegisterID shiftAmount, RegisterID dest)

View File

@ -43,7 +43,7 @@ esac
# some platforms need libatomic
case "$XBPS_TARGET_MACHINE" in
ppc64*) ;;
armv6*|ppc*)
armv[56]*|ppc*)
makedepends+=" libatomic-devel"
LIBS+=" -latomic"
;;