diff options
author | Antonin Godard <antonin.godard@bootlin.com> | 2025-03-31 17:04:48 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2025-04-03 16:29:51 +0100 |
commit | 0c323032520778d73bea5ad1f71cd76dd4fe2b23 (patch) | |
tree | 35a1f1fdfb5bd900546963167bc03f1dfd58bafe | |
parent | ecacb6015a6d917a0cf7d7af8a82ba7e5bff60a8 (diff) | |
download | poky-0c323032520778d73bea5ad1f71cd76dd4fe2b23.tar.gz |
ref-manual/variables.rst: document missing SDK_*_ARCH variables
These variables control the flags for the assembler, compiler and linker
when building for nativesdk recipes.
Reviewed-by: Quentin Schulz <quentin.schulz@cherry.de>
(From yocto-docs rev: 978300e5f14874f2586efa3474c6f3803e3d9031)
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
(cherry picked from commit c08f6d3c8aee86264c069b7c30850cb02de76076)
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | documentation/ref-manual/variables.rst | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/documentation/ref-manual/variables.rst b/documentation/ref-manual/variables.rst index dce812d204..43f7431995 100644 --- a/documentation/ref-manual/variables.rst +++ b/documentation/ref-manual/variables.rst | |||
@@ -7975,11 +7975,21 @@ system and gives an overview of their function and contents. | |||
7975 | 7975 | ||
7976 | Only one archive type can be specified. | 7976 | Only one archive type can be specified. |
7977 | 7977 | ||
7978 | :term:`SDK_AS_ARCH` | ||
7979 | Specifies architecture-specific assembler flags when building | ||
7980 | :ref:`ref-classes-nativesdk` recipes. By default, the value of | ||
7981 | :term:`SDK_AS_ARCH` equals the one of :term:`BUILD_AS_ARCH`. | ||
7982 | |||
7978 | :term:`SDK_BUILDINFO_FILE` | 7983 | :term:`SDK_BUILDINFO_FILE` |
7979 | When using the :ref:`ref-classes-image-buildinfo` class, | 7984 | When using the :ref:`ref-classes-image-buildinfo` class, |
7980 | specifies the file in the SDK to write the build information into. The | 7985 | specifies the file in the SDK to write the build information into. The |
7981 | default value is "``/buildinfo``". | 7986 | default value is "``/buildinfo``". |
7982 | 7987 | ||
7988 | :term:`SDK_CC_ARCH` | ||
7989 | Specifies the architecture-specific C compiler flags when building | ||
7990 | :ref:`ref-classes-nativesdk` recipes. By default, the value of | ||
7991 | :term:`SDK_CC_ARCH` equals the one of :term:`BUILD_CC_ARCH`. | ||
7992 | |||
7983 | :term:`SDK_CUSTOM_TEMPLATECONF` | 7993 | :term:`SDK_CUSTOM_TEMPLATECONF` |
7984 | When building the extensible SDK, if :term:`SDK_CUSTOM_TEMPLATECONF` is set to | 7994 | When building the extensible SDK, if :term:`SDK_CUSTOM_TEMPLATECONF` is set to |
7985 | "1" and a ``conf/templateconf.cfg`` file exists in the :term:`Build Directory` | 7995 | "1" and a ``conf/templateconf.cfg`` file exists in the :term:`Build Directory` |
@@ -8061,6 +8071,11 @@ system and gives an overview of their function and contents. | |||
8061 | :term:`SDK_EXT_TYPE` is set to "minimal", and defaults to "1" if | 8071 | :term:`SDK_EXT_TYPE` is set to "minimal", and defaults to "1" if |
8062 | :term:`SDK_EXT_TYPE` is set to "full". | 8072 | :term:`SDK_EXT_TYPE` is set to "full". |
8063 | 8073 | ||
8074 | :term:`SDK_LD_ARCH` | ||
8075 | Specifies architecture-specific linker flags when building | ||
8076 | :ref:`ref-classes-nativesdk` recipes. By default, the value of | ||
8077 | :term:`SDK_LD_ARCH` equals the one of :term:`BUILD_LD_ARCH`. | ||
8078 | |||
8064 | :term:`SDK_NAME` | 8079 | :term:`SDK_NAME` |
8065 | The base name for SDK output files. The default value (as set in | 8080 | The base name for SDK output files. The default value (as set in |
8066 | ``meta-poky/conf/distro/poky.conf``) is derived from the | 8081 | ``meta-poky/conf/distro/poky.conf``) is derived from the |