using.rst 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. .. SPDX-License-Identifier: CC-BY-SA-2.0-UK
  2. **********************
  3. Using the Standard SDK
  4. **********************
  5. This chapter describes the standard SDK and how to install it.
  6. Information includes unique installation and setup aspects for the
  7. standard SDK.
  8. .. note::
  9. For a side-by-side comparison of main features supported for a
  10. standard SDK as compared to an extensible SDK, see the
  11. ":ref:`sdk-manual/intro:introduction`" section.
  12. You can use a standard SDK to work on Makefile and Autotools-based
  13. projects. See the
  14. ":ref:`sdk-manual/working-projects:using the sdk toolchain directly`" chapter
  15. for more information.
  16. Why use the Standard SDK and What is in It?
  17. ===========================================
  18. The Standard SDK provides a cross-development toolchain and libraries
  19. tailored to the contents of a specific image. You would use the Standard
  20. SDK if you want a more traditional toolchain experience as compared to
  21. the extensible SDK, which provides an internal build system and the
  22. ``devtool`` functionality.
  23. The installed Standard SDK consists of several files and directories.
  24. Basically, it contains an SDK environment setup script, some
  25. configuration files, and host and target root filesystems to support
  26. usage. You can see the directory structure in the
  27. ":ref:`sdk-manual/appendix-obtain:installed standard sdk directory structure`"
  28. section.
  29. Installing the SDK
  30. ==================
  31. The first thing you need to do is install the SDK on your :term:`Build
  32. Host` by running the ``*.sh`` installation script.
  33. You can download a tarball installer, which includes the pre-built
  34. toolchain, the ``runqemu`` script, and support files from the
  35. appropriate :yocto_dl:`toolchain </releases/yocto/&DISTRO_REL_LATEST_TAG;/toolchain/>` directory within
  36. the Index of Releases. Toolchains are available for several 32-bit and
  37. 64-bit architectures with the ``x86_64`` directories, respectively. The
  38. toolchains the Yocto Project provides are based off the
  39. ``core-image-sato`` and ``core-image-minimal`` images and contain
  40. libraries appropriate for developing against the corresponding image.
  41. The names of the tarball installer scripts are such that a string
  42. representing the host system appears first in the filename and then is
  43. immediately followed by a string representing the target architecture::
  44. poky-glibc-host_system-image_type-arch-toolchain-release_version.sh
  45. Where:
  46. host_system is a string representing your development system:
  47. i686 or x86_64.
  48. image_type is the image for which the SDK was built:
  49. core-image-minimal or core-image-sato.
  50. arch is a string representing the tuned target architecture:
  51. aarch64, armv5e, core2-64, i586, mips32r2, mips64, ppc7400, or cortexa8hf-neon.
  52. release_version is a string representing the release number of the Yocto Project:
  53. &DISTRO;, &DISTRO;+snapshot
  54. For example, the following SDK installer is for a 64-bit
  55. development host system and a i586-tuned target architecture based off
  56. the SDK for ``core-image-sato`` and using the current DISTRO snapshot::
  57. poky-glibc-x86_64-core-image-sato-i586-toolchain-DISTRO.sh
  58. .. note::
  59. As an alternative to downloading an SDK, you can build the SDK
  60. installer. For information on building the installer, see the
  61. ":ref:`sdk-manual/appendix-obtain:building an sdk installer`"
  62. section.
  63. The SDK and toolchains are self-contained and by default are installed
  64. into the ``poky_sdk`` folder in your home directory. You can choose to
  65. install the extensible SDK in any location when you run the installer.
  66. However, because files need to be written under that directory during
  67. the normal course of operation, the location you choose for installation
  68. must be writable for whichever users need to use the SDK.
  69. The following command shows how to run the installer given a toolchain
  70. tarball for a 64-bit x86 development host system and a 64-bit x86 target
  71. architecture. The example assumes the SDK installer is located in
  72. ``~/Downloads/`` and has execution rights::
  73. $ ./Downloads/poky-glibc-x86_64-core-image-sato-i586-toolchain-&DISTRO;.sh
  74. Poky (Yocto Project Reference Distro) SDK installer version &DISTRO;
  75. ===============================================================
  76. Enter target directory for SDK (default: /opt/poky/&DISTRO;):
  77. You are about to install the SDK to "/opt/poky/&DISTRO;". Proceed [Y/n]? Y
  78. Extracting SDK........................................ ..............................done
  79. Setting it up...done
  80. SDK has been successfully set up and is ready to be used.
  81. Each time you wish to use the SDK in a new shell session, you need to source the environment setup script e.g.
  82. $ . /opt/poky/&DISTRO;/environment-setup-i586-poky-linux
  83. .. note::
  84. If you do not have write permissions for the directory into which you
  85. are installing the SDK, the installer notifies you and exits. For
  86. that case, set up the proper permissions in the directory and run the
  87. installer again.
  88. Again, reference the
  89. ":ref:`sdk-manual/appendix-obtain:installed standard sdk directory structure`"
  90. section for more details on the resulting directory structure of the installed
  91. SDK.
  92. Running the SDK Environment Setup Script
  93. ========================================
  94. Once you have the SDK installed, you must run the SDK environment setup
  95. script before you can actually use the SDK. This setup script resides in
  96. the directory you chose when you installed the SDK, which is either the
  97. default ``/opt/poky/&DISTRO;`` directory or the directory you chose during
  98. installation.
  99. Before running the script, be sure it is the one that matches the
  100. architecture for which you are developing. Environment setup scripts
  101. begin with the string "``environment-setup``" and include as part of
  102. their name the tuned target architecture. As an example, the following
  103. commands set the working directory to where the SDK was installed and
  104. then source the environment setup script. In this example, the setup
  105. script is for an IA-based target machine using i586 tuning::
  106. $ source /opt/poky/&DISTRO;/environment-setup-i586-poky-linux
  107. When you run the
  108. setup script, the same environment variables are defined as are when you
  109. run the setup script for an extensible SDK. See the
  110. ":ref:`sdk-manual/appendix-obtain:installed extensible sdk directory structure`"
  111. section for more information.