[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH 04/17] configure: clean up handling of CFI option
|
From: |
Paolo Bonzini |
|
Subject: |
Re: [PATCH 04/17] configure: clean up handling of CFI option |
|
Date: |
Mon, 16 Oct 2023 11:44:56 +0200 |
|
User-agent: |
Mozilla Thunderbird |
On 10/16/23 11:22, Philippe Mathieu-Daudé wrote:
On 16/10/23 08:31, Paolo Bonzini wrote:
Avoid that --enable-cfi --disable-cfi leaves b_lto set to true.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
---
configure | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)
@@ -1845,6 +1843,7 @@ if test "$skip_meson" = no; then
# QEMU options
test "$cfi" != false && meson_option_add "-Dcfi=$cfi"
+ test "$cfi" != false && meson_option_add "-Db_lto=$cfi"
Merge as "-Dcfi=$cfi -Db_lto=$cfi"?
Sure, it also needs a little change to meson_option_add though:
diff --git a/configure b/configure
index 3da46ed202d..fd88ef3fec2 100755
--- a/configure
+++ b/configure
@@ -624,7 +624,10 @@ meson_option_build_array() {
meson_options=
meson_option_add() {
- meson_options="$meson_options $(quote_sh "$1")"
+ local arg
+ for arg; do
+ meson_options="$meson_options $(quote_sh "$arg")"
+ done
}
meson_option_parse() {
meson_options="$meson_options $(_meson_option_parse "$@")"
@@ -1842,8 +1845,7 @@ if test "$skip_meson" = no; then
test "$werror" = yes && meson_option_add -Dwerror=true
# QEMU options
- test "$cfi" != false && meson_option_add "-Dcfi=$cfi"
- test "$cfi" != false && meson_option_add "-Db_lto=$cfi"
+ test "$cfi" != false && meson_option_add "-Dcfi=$cfi" "-Db_lto=$cfi"
test "$docs" != auto && meson_option_add "-Ddocs=$docs"
test -n "${LIB_FUZZING_ENGINE+xxx}" && meson_option_add
"-Dfuzzing_engine=$LIB_FUZZING_ENGINE"
test "$plugins" = yes && meson_option_add "-Dplugins=true"
Ok to squash that in?
Paolo
test "$docs" != auto && meson_option_add "-Ddocs=$docs"
test -n "${LIB_FUZZING_ENGINE+xxx}" && meson_option_add
"-Dfuzzing_engine=$LIB_FUZZING_ENGINE"
test "$plugins" = yes && meson_option_add "-Dplugins=true"
- [PATCH 02/17] meson: do not use set10, (continued)
- [PATCH 02/17] meson: do not use set10, Paolo Bonzini, 2023/10/16
- [PATCH 03/17] meson, cutils: allow non-relocatable installs, Paolo Bonzini, 2023/10/16
- [PATCH 01/17] meson: do not build shaders by default, Paolo Bonzini, 2023/10/16
- [PATCH 05/17] hw/xen: cleanup sourcesets, Paolo Bonzini, 2023/10/16
- [PATCH 04/17] configure: clean up handling of CFI option, Paolo Bonzini, 2023/10/16
- [PATCH 08/17] configure, tests/tcg: simplify GDB conditionals, Paolo Bonzini, 2023/10/16
- [PATCH 07/17] tests/tcg/arm: move non-SVE tests out of conditional, Paolo Bonzini, 2023/10/16
- [PATCH 10/17] configure: clean up PIE option handling, Paolo Bonzini, 2023/10/16
- [PATCH 06/17] hw/remote: move stub vfu_object_set_bus_irq out of stubs/, Paolo Bonzini, 2023/10/16
- [PATCH 09/17] configure: clean up plugin option handling, Paolo Bonzini, 2023/10/16
- [PATCH 11/17] configure: remove some dead cruft, Paolo Bonzini, 2023/10/16
- [PATCH 12/17] configure: move target-specific defaults to an external machine file, Paolo Bonzini, 2023/10/16