OSDN Git Service

meson: pass more options directly as -D
authorPaolo Bonzini <pbonzini@redhat.com>
Wed, 20 Apr 2022 15:33:58 +0000 (17:33 +0200)
committerPaolo Bonzini <pbonzini@redhat.com>
Sat, 7 May 2022 05:46:58 +0000 (07:46 +0200)
commitc54b59ee0da90dfb169c05e43ebf0c01a7dd5215
tree47370c8bd4ef2ca06e9c4403d935975bc361db94
parentc09c1ce7e9507f8421b01076e1ed94b4c51d8f53
meson: pass more options directly as -D

If an option is not used anywhere by the configure script, it can be just
added to $meson_options even if it is not parsed by the automatically
generated bits in scripts/meson-buildoptions.sh.

The only slightly tricky case is $debug, where the

  if test "$fortify_source" = "yes" ; then
    QEMU_CFLAGS="-U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 $QEMU_CFLAGS"
    debug=no
  fi

assignment is dead; configure sets fortify_source=no whenever debug=yes.

Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
configure
meson.build
scripts/meson-buildoptions.py
scripts/meson-buildoptions.sh