diff options
author | Ross Burton <ross@burtonini.com> | 2021-11-02 12:50:26 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-11-07 10:44:52 +0000 |
commit | f8f44cb476cb938a9b12922387cb3dc03d37c6cd (patch) | |
tree | 96df473c6d2b19484f39a048112911087818f750 /documentation | |
parent | 53159360066045ccd5f933eb227274ed2c309b1a (diff) | |
download | poky-f8f44cb476cb938a9b12922387cb3dc03d37c6cd.tar.gz |
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>
Diffstat (limited to 'documentation')
-rw-r--r-- | documentation/ref-manual/variables.rst | 20 |
1 files changed, 9 insertions, 11 deletions
diff --git a/documentation/ref-manual/variables.rst b/documentation/ref-manual/variables.rst index b9e97719b9..9eea8081c7 100644 --- a/documentation/ref-manual/variables.rst +++ b/documentation/ref-manual/variables.rst | |||
@@ -6756,17 +6756,15 @@ system and gives an overview of their function and contents. | |||
6756 | $ bitbake -c populate_sdk imagename | 6756 | $ bitbake -c populate_sdk imagename |
6757 | 6757 | ||
6758 | :term:`SDKMACHINE` | 6758 | :term:`SDKMACHINE` |
6759 | The machine for which the SDK is built. In other words, the SDK is | 6759 | The machine for which the SDK is built. In other words, the SDK is built |
6760 | built such that it runs on the target you specify with the | 6760 | such that it runs on the target you specify with the :term:`SDKMACHINE` |
6761 | :term:`SDKMACHINE` value. The value points to a corresponding ``.conf`` | 6761 | value. The value points to a corresponding ``.conf`` file under |
6762 | file under ``conf/machine-sdk/``. | 6762 | ``conf/machine-sdk/`` in the enabled layers, for example ``aarch64``, |
6763 | 6763 | ``i586``, ``i686``, ``ppc64``, ``ppc64le``, and ``x86_64`` are | |
6764 | You can use "i686" and "x86_64" as possible values for this variable. | 6764 | :oe_git:`available in OpenEmbedded-Core </openembedded-core/tree/meta/conf/machine-sdk>`. |
6765 | The variable defaults to "i686" and is set in the local.conf file in | 6765 | |
6766 | the Build Directory. | 6766 | The variable defaults to :term:`BUILD_ARCH` so that SDKs are built for the |
6767 | :: | 6767 | architecture of the build machine. |
6768 | |||
6769 | SDKMACHINE ?= "i686" | ||
6770 | 6768 | ||
6771 | .. note:: | 6769 | .. note:: |
6772 | 6770 | ||