[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 16/17] meson-buildoptions: document the data at the top
From: |
Paolo Bonzini |
Subject: |
[PATCH 16/17] meson-buildoptions: document the data at the top |
Date: |
Mon, 16 Oct 2023 08:31:26 +0200 |
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
---
scripts/meson-buildoptions.py | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/scripts/meson-buildoptions.py b/scripts/meson-buildoptions.py
index 2e88732a291..4814a8ff61f 100644
--- a/scripts/meson-buildoptions.py
+++ b/scripts/meson-buildoptions.py
@@ -25,11 +25,15 @@
import shlex
import sys
+# Options with nonstandard names (e.g. --with/--without) or OS-dependent
+# defaults. Try not to add any.
SKIP_OPTIONS = {
"default_devices",
"fuzzing_engine",
}
+# Options whose name doesn't match the option for backwards compatibility
+# reasons, because Meson gives them a funny name, or both
OPTION_NAMES = {
"b_coverage": "gcov",
"b_lto": "lto",
@@ -49,6 +53,10 @@
"werror",
}
+# Builtin options that should be definable via configure. Some of the others
+# we really do not want (e.g. c_args is defined via the native file, not
+# via -D, because it's a mix of CFLAGS and --extra-cflags); for specific
+# cases "../configure -D" can be used as an escape hatch.
BUILTIN_OPTIONS = {
"b_coverage",
"b_lto",
--
2.41.0
- Re: [PATCH 08/17] configure, tests/tcg: simplify GDB conditionals, (continued)
- [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
- [PATCH 14/17] configure: unify handling of several Debian cross containers, Paolo Bonzini, 2023/10/16
- [PATCH 15/17] configure, meson: use command line options to configure qemu-ga, Paolo Bonzini, 2023/10/16
- [PATCH 16/17] meson-buildoptions: document the data at the top,
Paolo Bonzini <=
- [PATCH 17/17] meson: add a note on why we use config_host for program paths, Paolo Bonzini, 2023/10/16
- [PATCH 13/17] configure: move environment-specific defaults to config-meson.cross, Paolo Bonzini, 2023/10/16