* [PATCH] configure, meson: deprecate 32-bit MIPS
@ 2024-10-27 13:07 Paolo Bonzini
2024-10-27 13:16 ` Michael Tokarev
2024-10-28 3:39 ` Philippe Mathieu-Daudé
0 siblings, 2 replies; 3+ messages in thread
From: Paolo Bonzini @ 2024-10-27 13:07 UTC (permalink / raw)
To: qemu-devel; +Cc: philmd
The mipsel architecture is not available in Debian Bookworm, and it will
likely be a hard failure as soon as we drop support for the old Rust
toolchain in Debian Bullseye. Prepare by deprecating 32-bit little
endian MIPS in QEMU 9.2.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
---
docs/about/build-platforms.rst | 2 +-
docs/about/deprecated.rst | 12 ++++++++----
meson.build | 8 ++++++++
3 files changed, 17 insertions(+), 5 deletions(-)
diff --git a/docs/about/build-platforms.rst b/docs/about/build-platforms.rst
index ff56091078e..6102f00aec0 100644
--- a/docs/about/build-platforms.rst
+++ b/docs/about/build-platforms.rst
@@ -41,7 +41,7 @@ Those hosts are officially supported, with various accelerators:
- Accelerators
* - Arm
- kvm (64 bit only), tcg, xen
- * - MIPS (little endian only)
+ * - MIPS (64 bit little endian only)
- kvm, tcg
* - PPC
- kvm, tcg
diff --git a/docs/about/deprecated.rst b/docs/about/deprecated.rst
index 74c75666c31..32b4cd16ec3 100644
--- a/docs/about/deprecated.rst
+++ b/docs/about/deprecated.rst
@@ -170,15 +170,19 @@ property types.
Host Architectures
------------------
-BE MIPS (since 7.2)
-'''''''''''''''''''
+32-bit MIPS (big endian since 7.2; little endian since 9.2)
+'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
As Debian 10 ("Buster") moved into LTS the big endian 32 bit version of
MIPS moved out of support making it hard to maintain our
cross-compilation CI tests of the architecture. As we no longer have
CI coverage support may bitrot away before the deprecation process
-completes. The little endian variants of MIPS (both 32 and 64 bit) are
-still a supported host architecture.
+completes.
+
+Likewise, the little endian variant of 32 bit MIPS is not supported by
+Debian 13 ("Trixie") and newer.
+
+64 bit little endian MIPS is still a supported host architecture.
System emulation on 32-bit x86 hosts (since 8.0)
''''''''''''''''''''''''''''''''''''''''''''''''
diff --git a/meson.build b/meson.build
index f5df5cdc49f..e69287acfc5 100644
--- a/meson.build
+++ b/meson.build
@@ -4807,6 +4807,14 @@ if host_arch == 'unknown'
message('configure has succeeded and you can continue to build, but')
message('QEMU will use a slow interpreter to emulate the target CPU.')
endif
+elif host_arch == 'mips'
+ message()
+ warning('DEPRECATED HOST CPU')
+ message()
+ message('Support for CPU host architecture ' + cpu + ' is going to be')
+ message('dropped as soon as the QEMU project stops supporting Debian 12')
+ message('("Bookworm"). Going forward, the QEMU project will not guarantee')
+ message('that QEMU will compile or work on this host CPU.')
endif
if not supported_oses.contains(host_os)
--
2.47.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] configure, meson: deprecate 32-bit MIPS
2024-10-27 13:07 [PATCH] configure, meson: deprecate 32-bit MIPS Paolo Bonzini
@ 2024-10-27 13:16 ` Michael Tokarev
2024-10-28 3:39 ` Philippe Mathieu-Daudé
1 sibling, 0 replies; 3+ messages in thread
From: Michael Tokarev @ 2024-10-27 13:16 UTC (permalink / raw)
To: Paolo Bonzini, qemu-devel; +Cc: philmd
27.10.2024 16:07, Paolo Bonzini wrote:
> The mipsel architecture is not available in Debian Bookworm, and it will
> likely be a hard failure as soon as we drop support for the old Rust
> toolchain in Debian Bullseye. Prepare by deprecating 32-bit little
> endian MIPS in QEMU 9.2.
Correction. mipsel *is* available in debian bookworm, it is the last release
of debian which has mipsel. It's been removed from trixie, the *next* debian
release. Basically, s/Bookworm/Trixie/ s/Bullseye/Bookworm/.
(it's the rust-web which is not available FOR BOOKWORM, because of no upstream
support from rust people)
Thanks,
/mjt
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] configure, meson: deprecate 32-bit MIPS
2024-10-27 13:07 [PATCH] configure, meson: deprecate 32-bit MIPS Paolo Bonzini
2024-10-27 13:16 ` Michael Tokarev
@ 2024-10-28 3:39 ` Philippe Mathieu-Daudé
1 sibling, 0 replies; 3+ messages in thread
From: Philippe Mathieu-Daudé @ 2024-10-28 3:39 UTC (permalink / raw)
To: Paolo Bonzini, qemu-devel
On 27/10/24 10:07, Paolo Bonzini wrote:
> The mipsel architecture is not available in Debian Bookworm, and it will
> likely be a hard failure as soon as we drop support for the old Rust
> toolchain in Debian Bullseye. Prepare by deprecating 32-bit little
> endian MIPS in QEMU 9.2.
>
> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
> ---
> docs/about/build-platforms.rst | 2 +-
> docs/about/deprecated.rst | 12 ++++++++----
> meson.build | 8 ++++++++
> 3 files changed, 17 insertions(+), 5 deletions(-)
>
> diff --git a/docs/about/build-platforms.rst b/docs/about/build-platforms.rst
> index ff56091078e..6102f00aec0 100644
> --- a/docs/about/build-platforms.rst
> +++ b/docs/about/build-platforms.rst
> @@ -41,7 +41,7 @@ Those hosts are officially supported, with various accelerators:
> - Accelerators
> * - Arm
> - kvm (64 bit only), tcg, xen
> - * - MIPS (little endian only)
> + * - MIPS (64 bit little endian only)
> - kvm, tcg
> * - PPC
> - kvm, tcg
> diff --git a/docs/about/deprecated.rst b/docs/about/deprecated.rst
> index 74c75666c31..32b4cd16ec3 100644
> --- a/docs/about/deprecated.rst
> +++ b/docs/about/deprecated.rst
> @@ -170,15 +170,19 @@ property types.
> Host Architectures
> ------------------
>
> -BE MIPS (since 7.2)
> -'''''''''''''''''''
> +32-bit MIPS (big endian since 7.2; little endian since 9.2)
> +'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
Big endian MIPS since 7.2; 32-bit little endian MIPS since 9.2
''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2024-10-28 3:39 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-10-27 13:07 [PATCH] configure, meson: deprecate 32-bit MIPS Paolo Bonzini
2024-10-27 13:16 ` Michael Tokarev
2024-10-28 3:39 ` Philippe Mathieu-Daudé
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).