aboutsummaryrefslogtreecommitdiff
path: root/docs/devel
diff options
context:
space:
mode:
authorPaolo Bonzini <pbonzini@redhat.com>2021-11-05 13:45:40 +0100
committerPaolo Bonzini <pbonzini@redhat.com>2021-11-08 10:55:59 +0100
commit4933436f6a13fb585d8b2e2f625bf52301e98f11 (patch)
tree299a3268c27dd8d18598ec61ed9929ecc2794f39 /docs/devel
parent565174d08ed34a849f8420f0d9c97d08be3835aa (diff)
downloadqemu-4933436f6a13fb585d8b2e2f625bf52301e98f11.zip
qemu-4933436f6a13fb585d8b2e2f625bf52301e98f11.tar.gz
qemu-4933436f6a13fb585d8b2e2f625bf52301e98f11.tar.bz2
docs: adjust for demise of scripts/create_config
The config-host.h, $TARGET_NAME-config-target.h, $TARGET_NAME-config-devices.h files are now generated by configure_file() rather than scripts/create_config. Adjust he relevant paragraph in docs/devel/build-system.rst, and take the occasion to fix a preexisting confusion of *.h vs *.mak. Reported-by: Markus Armbruster <armbru@redhat.com> Reviewed-by: Markus Armbruster <armbru@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'docs/devel')
-rw-r--r--docs/devel/build-system.rst9
1 files changed, 4 insertions, 5 deletions
diff --git a/docs/devel/build-system.rst b/docs/devel/build-system.rst
index 7f106d2..3c05032 100644
--- a/docs/devel/build-system.rst
+++ b/docs/devel/build-system.rst
@@ -464,11 +464,10 @@ Built by Meson:
scripts/make_device_config.sh program, feeding it the
default-configs/$TARGET-NAME file as input.
-``config-host.h``, ``$TARGET-NAME/config-target.h``, ``$TARGET-NAME/config-devices.h``
- These files are used by source code to determine what features
- are enabled. They are generated from the contents of the corresponding
- ``*.h`` files using the scripts/create_config program. This extracts
- relevant variables and formats them as C preprocessor macros.
+``config-host.h``, ``$TARGET_NAME-config-target.h``, ``$TARGET_NAME-config-devices.h``
+ These files are used by source code to determine what features are
+ enabled. They are generated from the contents of the corresponding
+ ``*.mak`` files using Meson's ``configure_file()`` function.
``build.ninja``
The build rules.