qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/24] Meson changes for QEMU 8.1
@ 2023-05-11  9:49 Paolo Bonzini
  2023-05-11  9:49 ` [PATCH 01/24] meson: regenerate meson-buildoptions.sh Paolo Bonzini
                   ` (23 more replies)
  0 siblings, 24 replies; 27+ messages in thread
From: Paolo Bonzini @ 2023-05-11  9:49 UTC (permalink / raw)
  To: qemu-devel

The final bout of conversions; most of them were posted for 8.0, but
then delayed due to the Python 3.7+ requirement and the consequent
yak shaving with libvirt-ci and mkvenv.  It removes the remaining
compiler tests for emulators, applies a few cleanups that are enabled
by version 0.63 of Meson, and updates the documentation.

Paolo

Based-on: <20230511035435.734312-1-jsnow@redhat.com>


Paolo Bonzini (24):
  meson: regenerate meson-buildoptions.sh
  meson: require 0.63.0
  meson: use prefer_static option
  meson: remove static_kwargs
  meson: add more version numbers to the summary
  meson: drop unnecessary declare_dependency()
  build: move glib detection and workarounds to meson
  configure: remove pkg-config functions
  configure, meson: move --enable-modules to Meson
  meson: prepare move of QEMU_CFLAGS to meson
  build: move sanitizer tests to meson
  build: move SafeStack tests to meson
  build: move coroutine backend selection to meson
  build: move stack protector flag selection to meson
  build: move warning flag selection to meson
  build: move remaining compiler flag tests to meson
  build: move compiler version check to meson
  build: move --disable-debug-info to meson
  configure: remove compiler sanity check
  configure: do not rerun the tests with -Werror
  configure: remove unnecessary mkdir
  configure: reorder option parsing code
  docs/devel: update build system docs
  configure: remove unnecessary check

 configure                                     | 839 ++----------------
 contrib/plugins/Makefile                      |   7 +-
 docs/devel/build-system.rst                   | 296 +++---
 meson.build                                   | 658 +++++++++-----
 meson_options.txt                             |  13 +
 python/scripts/vendor.py                      |   4 +-
 python/wheels/meson-0.61.5-py3-none-any.whl   | Bin 862509 -> 0 bytes
 python/wheels/meson-0.63.3-py3-none-any.whl   | Bin 0 -> 926526 bytes
 qga/meson.build                               |   2 +-
 scripts/meson-buildoptions.py                 |   3 +
 scripts/meson-buildoptions.sh                 |  28 +-
 tcg/meson.build                               |   2 +-
 tests/qemu-iotests/meson.build                |   2 +-
 tests/qtest/meson.build                       |   2 +-
 tests/unit/meson.build                        |   2 +-
 ...{coroutine-win32.c => coroutine-windows.c} |   0
 util/meson.build                              |   6 +-
 17 files changed, 759 insertions(+), 1105 deletions(-)
 delete mode 100644 python/wheels/meson-0.61.5-py3-none-any.whl
 create mode 100644 python/wheels/meson-0.63.3-py3-none-any.whl
 rename util/{coroutine-win32.c => coroutine-windows.c} (100%)

-- 
2.40.1



^ permalink raw reply	[flat|nested] 27+ messages in thread

end of thread, other threads:[~2024-01-18 19:24 UTC | newest]

Thread overview: 27+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-05-11  9:49 [PATCH 00/24] Meson changes for QEMU 8.1 Paolo Bonzini
2023-05-11  9:49 ` [PATCH 01/24] meson: regenerate meson-buildoptions.sh Paolo Bonzini
2023-05-11  9:49 ` [PATCH 02/24] meson: require 0.63.0 Paolo Bonzini
2023-05-11  9:50 ` [PATCH 03/24] meson: use prefer_static option Paolo Bonzini
2023-05-11  9:50 ` [PATCH 04/24] meson: remove static_kwargs Paolo Bonzini
2023-05-11  9:50 ` [PATCH 05/24] meson: add more version numbers to the summary Paolo Bonzini
2023-05-11  9:50 ` [PATCH 06/24] meson: drop unnecessary declare_dependency() Paolo Bonzini
2023-05-11  9:50 ` [PATCH 07/24] build: move glib detection and workarounds to meson Paolo Bonzini
2023-05-11  9:50 ` [PATCH 08/24] configure: remove pkg-config functions Paolo Bonzini
2023-05-11  9:50 ` [PATCH 09/24] configure, meson: move --enable-modules to Meson Paolo Bonzini
2023-05-11  9:50 ` [PATCH 10/24] meson: prepare move of QEMU_CFLAGS to meson Paolo Bonzini
2023-05-11  9:50 ` [PATCH 11/24] build: move sanitizer tests " Paolo Bonzini
2023-05-11  9:50 ` [PATCH 12/24] build: move SafeStack " Paolo Bonzini
2023-05-11  9:50 ` [PATCH 13/24] build: move coroutine backend selection " Paolo Bonzini
2023-05-11  9:50 ` [PATCH 14/24] build: move stack protector flag " Paolo Bonzini
2023-05-11  9:50 ` [PATCH 15/24] build: move warning " Paolo Bonzini
2023-05-11  9:50 ` [PATCH 16/24] build: move remaining compiler flag tests " Paolo Bonzini
2023-05-11  9:50 ` [PATCH 17/24] build: move compiler version check " Paolo Bonzini
2023-05-11  9:50 ` [PATCH 18/24] build: move --disable-debug-info " Paolo Bonzini
2023-07-26  6:45   ` Michael Tokarev
2023-05-11  9:50 ` [PATCH 19/24] configure: remove compiler sanity check Paolo Bonzini
2024-01-18 19:23   ` Thomas Huth
2023-05-11  9:50 ` [PATCH 20/24] configure: do not rerun the tests with -Werror Paolo Bonzini
2023-05-11  9:50 ` [PATCH 21/24] configure: remove unnecessary mkdir Paolo Bonzini
2023-05-11  9:50 ` [PATCH 22/24] configure: reorder option parsing code Paolo Bonzini
2023-05-11  9:50 ` [PATCH 23/24] configure: remove unnecessary check Paolo Bonzini
2023-05-11  9:50 ` [PATCH 24/24] docs/devel: update build system docs Paolo Bonzini

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).