From 3865d88423c18f28f74efd9878a386db9491246f Mon Sep 17 00:00:00 2001 From: Fabrice Fontaine Date: Thu, 11 Jan 2024 20:40:21 +0100 Subject: [PATCH] package/criu: disable mips mips raises the following build failure since the addition of the package in commit 3e4b479f39c15ffdf307ec8395d856680c727204: compel/arch/mips/plugins/std/memcpy.S:7: Error: opcode not supported on this processor: mips32 (mips32) `dadd $2,$0,$4' compel/arch/mips/plugins/std/memcpy.S:8: Error: opcode not supported on this processor: mips32 (mips32) `daddiu $13,$0,0' Indeed, dadd and daddiu are specific to mips64 Building on mips64 doesn't work either as it raises the following build failure: /tmp/ccArXSfi.s:305: Error: opcode not supported on this processor: mips64 (mips64) `rdhwr $2,$29' Fixes: - http://autobuild.buildroot.org/results/b0341d0654e66bdac2c91d5949be3810a961d9da - http://autobuild.buildroot.org/results/b7b8860476de04980bd8c7241d3dd5a01a0251c8 Signed-off-by: Fabrice Fontaine Signed-off-by: Peter Korsgaard --- package/criu/Config.in | 1 - 1 file changed, 1 deletion(-) diff --git a/package/criu/Config.in b/package/criu/Config.in index b3bb830768..fc0da823b3 100644 --- a/package/criu/Config.in +++ b/package/criu/Config.in @@ -6,7 +6,6 @@ config BR2_PACKAGE_CRIU_ARCH_SUPPORTS default y if BR2_ARM_CPU_ARMV7M default y if BR2_ARM_CPU_ARMV8A default y if BR2_aarch64 - default y if BR2_mips default y if BR2_x86_64 default y if BR2_powerpc64le # Only support powerpc64 with LE # CRIU has "some" support for s390 but it is not included due to