diff options
Diffstat (limited to 'documentation/ref-manual/devtool-reference.rst')
-rw-r--r-- | documentation/ref-manual/devtool-reference.rst | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/documentation/ref-manual/devtool-reference.rst b/documentation/ref-manual/devtool-reference.rst index a50789171a..ccf4ab3d13 100644 --- a/documentation/ref-manual/devtool-reference.rst +++ b/documentation/ref-manual/devtool-reference.rst | |||
@@ -550,6 +550,26 @@ the packages are already on the target. Consequently, when a runtime | |||
550 | call is made in the application for a dependent function (e.g. a library | 550 | call is made in the application for a dependent function (e.g. a library |
551 | call), the function cannot be found. | 551 | call), the function cannot be found. |
552 | 552 | ||
553 | .. warning:: | ||
554 | |||
555 | Runtime dependencies can be explicitly listed in the :term:`RDEPENDS` | ||
556 | variable, but may also be the result of a :term:`DEPENDS` assignment in your | ||
557 | application's recipe. This is usually the case when your application depends | ||
558 | on libraries for compilation: these libraries are listed as build-time | ||
559 | dependencies in the :term:`DEPENDS` variable in your application's recipe. | ||
560 | However these may also be runtime dependencies if they install shared objects | ||
561 | on which your application will dynamically link to at runtime (e.g. shared | ||
562 | libraries ending with ``.so``). | ||
563 | |||
564 | These runtime dependencies are automatically resolved by the | ||
565 | :term:`OpenEmbedded Build System` during the packaging phase. Since | ||
566 | ``devtool`` ignores packaging dependencies, they will not be installed | ||
567 | automatically with ``devtool deploy-target``. | ||
568 | |||
569 | For more information on how the :term:`OpenEmbedded Build System` handles | ||
570 | packaging, see the :ref:`overview-manual/concepts:Automatically Added Runtime | ||
571 | Dependencies` section of the Yocto Project Overview and Concepts Manual. | ||
572 | |||
553 | To be sure you have all the dependencies local to the target, you need | 573 | To be sure you have all the dependencies local to the target, you need |
554 | to be sure that the packages are pre-deployed (installed) on the target | 574 | to be sure that the packages are pre-deployed (installed) on the target |
555 | before attempting to run your application. | 575 | before attempting to run your application. |