* [Buildroot] [PATCH 1/1] package/criu: disable mips
@ 2024-01-11 19:40 Fabrice Fontaine
2024-01-13 20:28 ` Peter Korsgaard
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: Fabrice Fontaine @ 2024-01-11 19:40 UTC (permalink / raw)
To: buildroot; +Cc: Marcus Folkesson, Fabrice Fontaine
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 <fontaine.fabrice@gmail.com>
---
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
--
2.43.0
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 5+ messages in thread* Re: [Buildroot] [PATCH 1/1] package/criu: disable mips
2024-01-11 19:40 [Buildroot] [PATCH 1/1] package/criu: disable mips Fabrice Fontaine
@ 2024-01-13 20:28 ` Peter Korsgaard
2024-01-13 22:54 ` Peter Korsgaard
2024-01-13 22:53 ` Peter Korsgaard
2024-01-14 18:29 ` Peter Korsgaard
2 siblings, 1 reply; 5+ messages in thread
From: Peter Korsgaard @ 2024-01-13 20:28 UTC (permalink / raw)
To: Fabrice Fontaine; +Cc: Marcus Folkesson, buildroot
>>>>> "Fabrice" == Fabrice Fontaine <fontaine.fabrice@gmail.com> writes:
> 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 <fontaine.fabrice@gmail.com>
Committed to 2023.11.x, thanks.
--
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Buildroot] [PATCH 1/1] package/criu: disable mips
2024-01-13 20:28 ` Peter Korsgaard
@ 2024-01-13 22:54 ` Peter Korsgaard
0 siblings, 0 replies; 5+ messages in thread
From: Peter Korsgaard @ 2024-01-13 22:54 UTC (permalink / raw)
To: Fabrice Fontaine; +Cc: Marcus Folkesson, buildroot
>>>>> "Peter" == Peter Korsgaard <peter@korsgaard.com> writes:
>>>>> "Fabrice" == Fabrice Fontaine <fontaine.fabrice@gmail.com> writes:
>> 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 <fontaine.fabrice@gmail.com>
> Committed to 2023.11.x, thanks.
Sorry, this was supposed to be about the i386 patch instead.
--
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Buildroot] [PATCH 1/1] package/criu: disable mips
2024-01-11 19:40 [Buildroot] [PATCH 1/1] package/criu: disable mips Fabrice Fontaine
2024-01-13 20:28 ` Peter Korsgaard
@ 2024-01-13 22:53 ` Peter Korsgaard
2024-01-14 18:29 ` Peter Korsgaard
2 siblings, 0 replies; 5+ messages in thread
From: Peter Korsgaard @ 2024-01-13 22:53 UTC (permalink / raw)
To: Fabrice Fontaine; +Cc: Marcus Folkesson, buildroot
>>>>> "Fabrice" == Fabrice Fontaine <fontaine.fabrice@gmail.com> writes:
> 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 <fontaine.fabrice@gmail.com>
Committed, thanks.
--
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Buildroot] [PATCH 1/1] package/criu: disable mips
2024-01-11 19:40 [Buildroot] [PATCH 1/1] package/criu: disable mips Fabrice Fontaine
2024-01-13 20:28 ` Peter Korsgaard
2024-01-13 22:53 ` Peter Korsgaard
@ 2024-01-14 18:29 ` Peter Korsgaard
2 siblings, 0 replies; 5+ messages in thread
From: Peter Korsgaard @ 2024-01-14 18:29 UTC (permalink / raw)
To: Fabrice Fontaine; +Cc: Marcus Folkesson, buildroot
>>>>> "Fabrice" == Fabrice Fontaine <fontaine.fabrice@gmail.com> writes:
> 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 <fontaine.fabrice@gmail.com>
Committed to 2023.11.x, thanks.
--
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2024-01-14 18:29 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-01-11 19:40 [Buildroot] [PATCH 1/1] package/criu: disable mips Fabrice Fontaine
2024-01-13 20:28 ` Peter Korsgaard
2024-01-13 22:54 ` Peter Korsgaard
2024-01-13 22:53 ` Peter Korsgaard
2024-01-14 18:29 ` Peter Korsgaard
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox