1
0
mirror of https://git.yoctoproject.org/poky synced 2026-05-08 05:09:24 +00:00

ref-manual: improve documentation for SDKMACHINE

(From yocto-docs rev: 69bfb07772e7d358bb532191189a2518d1046178)

Signed-off-by: Ross Burton <ross.burton@arm.com>
Reviewed-by: Quentin Schulz <foss@0leil.net>
Reviewed-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Ross Burton
2021-11-02 12:50:26 +00:00
committed by Richard Purdie
parent 5315936006
commit f8f44cb476
+8 -10
View File
@@ -6756,17 +6756,15 @@ system and gives an overview of their function and contents.
$ bitbake -c populate_sdk imagename
:term:`SDKMACHINE`
The machine for which the SDK is built. In other words, the SDK is
built such that it runs on the target you specify with the
:term:`SDKMACHINE` value. The value points to a corresponding ``.conf``
file under ``conf/machine-sdk/``.
The machine for which the SDK is built. In other words, the SDK is built
such that it runs on the target you specify with the :term:`SDKMACHINE`
value. The value points to a corresponding ``.conf`` file under
``conf/machine-sdk/`` in the enabled layers, for example ``aarch64``,
``i586``, ``i686``, ``ppc64``, ``ppc64le``, and ``x86_64`` are
:oe_git:`available in OpenEmbedded-Core </openembedded-core/tree/meta/conf/machine-sdk>`.
You can use "i686" and "x86_64" as possible values for this variable.
The variable defaults to "i686" and is set in the local.conf file in
the Build Directory.
::
SDKMACHINE ?= "i686"
The variable defaults to :term:`BUILD_ARCH` so that SDKs are built for the
architecture of the build machine.
.. note::