sdk-appendix-customizing.xml 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514
  1. <!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
  2. "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd"
  3. [<!ENTITY % poky SYSTEM "../poky.ent"> %poky; ] >
  4. <appendix id='sdk-appendix-customizing'>
  5. <title>Customizing the Extensible SDK</title>
  6. <para>
  7. This appendix describes customizations you can apply to the extensible SDK.
  8. </para>
  9. <section id='sdk-configuring-the-extensible-sdk'>
  10. <title>Configuring the Extensible SDK</title>
  11. <para>
  12. The extensible SDK primarily consists of a pre-configured copy of
  13. the OpenEmbedded build system from which it was produced.
  14. Thus, the SDK's configuration is derived using that build system and
  15. the filters shown in the following list.
  16. When these filters are present, the OpenEmbedded build system applies
  17. them against <filename>local.conf</filename> and
  18. <filename>auto.conf</filename>:
  19. <itemizedlist>
  20. <listitem><para>
  21. Variables whose values start with "/" are excluded since the
  22. assumption is that those values are paths that are likely to
  23. be specific to the
  24. <ulink url='&YOCTO_DOCS_REF_URL;#hardware-build-system-term'>build host</ulink>.
  25. </para></listitem>
  26. <listitem><para>
  27. Variables listed in
  28. <ulink url='&YOCTO_DOCS_REF_URL;#var-SDK_LOCAL_CONF_BLACKLIST'><filename>SDK_LOCAL_CONF_BLACKLIST</filename></ulink>
  29. are excluded.
  30. These variables are not allowed through from the OpenEmbedded
  31. build system configuration into the extensible SDK
  32. configuration.
  33. Typically, these variables are specific to the machine on
  34. which the build system is running and could be problematic
  35. as part of the extensible SDK configuration.</para>
  36. <para>For a list of the variables excluded by default, see the
  37. <ulink url='&YOCTO_DOCS_REF_URL;#var-SDK_LOCAL_CONF_BLACKLIST'><filename>SDK_LOCAL_CONF_BLACKLIST</filename></ulink>
  38. in the glossary of the Yocto Project Reference Manual.
  39. </para></listitem>
  40. <listitem><para>
  41. Variables listed in
  42. <ulink url='&YOCTO_DOCS_REF_URL;#var-SDK_LOCAL_CONF_WHITELIST'><filename>SDK_LOCAL_CONF_WHITELIST</filename></ulink>
  43. are included.
  44. Including a variable in the value of
  45. <filename>SDK_LOCAL_CONF_WHITELIST</filename> overrides either
  46. of the previous two filters.
  47. The default value is blank.
  48. </para></listitem>
  49. <listitem><para>
  50. Classes inherited globally with
  51. <ulink url='&YOCTO_DOCS_REF_URL;#var-INHERIT'><filename>INHERIT</filename></ulink>
  52. that are listed in
  53. <ulink url='&YOCTO_DOCS_REF_URL;#var-SDK_INHERIT_BLACKLIST'><filename>SDK_INHERIT_BLACKLIST</filename></ulink>
  54. are disabled.
  55. Using <filename>SDK_INHERIT_BLACKLIST</filename> to disable
  56. these classes is the typical method to disable classes that
  57. are problematic or unnecessary in the SDK context.
  58. The default value blacklists the
  59. <ulink url='&YOCTO_DOCS_REF_URL;#ref-classes-buildhistory'><filename>buildhistory</filename></ulink>
  60. and
  61. <ulink url='&YOCTO_DOCS_REF_URL;#ref-classes-icecc'><filename>icecc</filename></ulink>
  62. classes.
  63. </para></listitem>
  64. </itemizedlist>
  65. Additionally, the contents of <filename>conf/sdk-extra.conf</filename>,
  66. when present, are appended to the end of
  67. <filename>conf/local.conf</filename> within the produced SDK, without
  68. any filtering.
  69. The <filename>sdk-extra.conf</filename> file is particularly useful
  70. if you want to set a variable value just for the SDK and not the
  71. OpenEmbedded build system used to create the SDK.
  72. </para>
  73. </section>
  74. <section id='adjusting-the-extensible-sdk-to-suit-your-build-hosts-setup'>
  75. <title>Adjusting the Extensible SDK to Suit Your Build Host's Setup</title>
  76. <para>
  77. In most cases, the extensible SDK defaults should work with your
  78. <ulink url='&YOCTO_DOCS_REF_URL;#hardware-build-system-term'>build host's</ulink>
  79. setup.
  80. However, some cases exist for which you might consider making
  81. adjustments:
  82. <itemizedlist>
  83. <listitem><para>
  84. If your SDK configuration inherits additional classes
  85. using the
  86. <ulink url='&YOCTO_DOCS_REF_URL;#var-INHERIT'><filename>INHERIT</filename></ulink>
  87. variable and you do not need or want those classes enabled in
  88. the SDK, you can blacklist them by adding them to the
  89. <ulink url='&YOCTO_DOCS_REF_URL;#var-SDK_INHERIT_BLACKLIST'><filename>SDK_INHERIT_BLACKLIST</filename></ulink>
  90. variable as described in the fourth bullet of the previous
  91. section.
  92. <note>
  93. The default value of
  94. <filename>SDK_INHERIT_BLACKLIST</filename> is set using
  95. the "?=" operator.
  96. Consequently, you will need to either define the entire
  97. list by using the "=" operator, or you will need to append
  98. a value using either "_append" or the "+=" operator.
  99. You can learn more about these operators in the
  100. "<ulink url='&YOCTO_DOCS_BB_URL;#basic-syntax'>Basic Syntax</ulink>"
  101. section of the BitBake User Manual.
  102. </note>.
  103. </para></listitem>
  104. <listitem><para>
  105. If you have classes or recipes that add additional tasks to
  106. the standard build flow (i.e. the tasks execute as the recipe
  107. builds as opposed to being called explicitly), then you need
  108. to do one of the following:
  109. <itemizedlist>
  110. <listitem><para>
  111. After ensuring the tasks are
  112. <ulink url='&YOCTO_DOCS_OM_URL;#shared-state-cache'>shared state</ulink>
  113. tasks (i.e. the output of the task is saved to and
  114. can be restored from the shared state cache) or
  115. ensuring the tasks are able to be produced quickly from
  116. a task that is a shared state task, add the task name
  117. to the value of
  118. <ulink url='&YOCTO_DOCS_REF_URL;#var-SDK_RECRDEP_TASKS'><filename>SDK_RECRDEP_TASKS</filename></ulink>.
  119. </para></listitem>
  120. <listitem><para>
  121. Disable the tasks if they are added by a class and
  122. you do not need the functionality the class provides
  123. in the extensible SDK.
  124. To disable the tasks, add the class to the
  125. <filename>SDK_INHERIT_BLACKLIST</filename> variable
  126. as described in the previous section.
  127. </para></listitem>
  128. </itemizedlist>
  129. </para></listitem>
  130. <listitem><para>
  131. Generally, you want to have a shared state mirror set up so
  132. users of the SDK can add additional items to the SDK after
  133. installation without needing to build the items from source.
  134. See the
  135. "<link linkend='sdk-providing-additional-installable-extensible-sdk-content'>Providing Additional Installable Extensible SDK Content</link>"
  136. section for information.
  137. </para></listitem>
  138. <listitem><para>
  139. If you want users of the SDK to be able to easily update the
  140. SDK, you need to set the
  141. <ulink url='&YOCTO_DOCS_REF_URL;#var-SDK_UPDATE_URL'><filename>SDK_UPDATE_URL</filename></ulink>
  142. variable.
  143. For more information, see the
  144. "<link linkend='sdk-providing-updates-to-the-extensible-sdk-after-installation'>Providing Updates to the Extensible SDK After Installation</link>"
  145. section.
  146. </para></listitem>
  147. <listitem><para>
  148. If you have adjusted the list of files and directories that
  149. appear in
  150. <ulink url='&YOCTO_DOCS_REF_URL;#var-COREBASE'><filename>COREBASE</filename></ulink>
  151. (other than layers that are enabled through
  152. <filename>bblayers.conf</filename>), then you must list these
  153. files in
  154. <ulink url='&YOCTO_DOCS_REF_URL;#var-COREBASE_FILES'><filename>COREBASE_FILES</filename></ulink>
  155. so that the files are copied into the SDK.
  156. </para></listitem>
  157. <listitem><para>
  158. If your OpenEmbedded build system setup uses a different
  159. environment setup script other than
  160. <ulink url='&YOCTO_DOCS_REF_URL;#structure-core-script'><filename>&OE_INIT_FILE;</filename></ulink>,
  161. then you must set
  162. <ulink url='&YOCTO_DOCS_REF_URL;#var-OE_INIT_ENV_SCRIPT'><filename>OE_INIT_ENV_SCRIPT</filename></ulink>
  163. to point to the environment setup script you use.
  164. <note>
  165. You must also reflect this change in the value used for the
  166. <filename>COREBASE_FILES</filename> variable as previously
  167. described.
  168. </note>
  169. </para></listitem>
  170. </itemizedlist>
  171. </para>
  172. </section>
  173. <section id='sdk-changing-the-sdk-installer-title'>
  174. <title>Changing the Extensible SDK Installer Title</title>
  175. <para>
  176. You can change the displayed title for the SDK installer by setting
  177. the
  178. <ulink url='&YOCTO_DOCS_REF_URL;#var-SDK_TITLE'><filename>SDK_TITLE</filename></ulink>
  179. variable and then rebuilding the the SDK installer.
  180. For information on how to build an SDK installer, see the
  181. "<link linkend='sdk-building-an-sdk-installer'>Building an SDK Installer</link>"
  182. section.
  183. </para>
  184. <para>
  185. By default, this title is derived from
  186. <ulink url='&YOCTO_DOCS_REF_URL;#var-DISTRO_NAME'><filename>DISTRO_NAME</filename></ulink>
  187. when it is set.
  188. If the <filename>DISTRO_NAME</filename> variable is not set, the title
  189. is derived from the
  190. <ulink url='&YOCTO_DOCS_REF_URL;#var-DISTRO'><filename>DISTRO</filename></ulink>
  191. variable.
  192. </para>
  193. <para>
  194. The
  195. <ulink url='&YOCTO_DOCS_REF_URL;#ref-classes-populate-sdk-*'><filename>populate_sdk_base</filename></ulink>
  196. class defines the default value of the <filename>SDK_TITLE</filename>
  197. variable as follows:
  198. <literallayout class='monospaced'>
  199. SDK_TITLE ??= "${@d.getVar('DISTRO_NAME') or d.getVar('DISTRO')} SDK"
  200. </literallayout>
  201. </para>
  202. <para>
  203. While several ways exist to change this variable, an efficient method
  204. is to set the variable in your distribution's configuration file.
  205. Doing so creates an SDK installer title that applies across your
  206. distribution.
  207. As an example, assume you have your own layer for your distribution
  208. named "meta-mydistro" and you are using the same type of file
  209. hierarchy as does the default "poky" distribution.
  210. If so, you could update the <filename>SDK_TITLE</filename> variable
  211. in the
  212. <filename>~/meta-mydistro/conf/distro/mydistro.conf</filename> file
  213. using the following form:
  214. <literallayout class='monospaced'>
  215. SDK_TITLE = "<replaceable>your_title</replaceable>"
  216. </literallayout>
  217. </para>
  218. </section>
  219. <section id='sdk-providing-updates-to-the-extensible-sdk-after-installation'>
  220. <title>Providing Updates to the Extensible SDK After Installation</title>
  221. <para>
  222. When you make changes to your configuration or to the metadata and
  223. if you want those changes to be reflected in installed SDKs, you need
  224. to perform additional steps.
  225. These steps make it possible for anyone using the installed SDKs to
  226. update the installed SDKs by using the
  227. <filename>devtool sdk-update</filename> command:
  228. <orderedlist>
  229. <listitem><para>
  230. Create a directory that can be shared over HTTP or HTTPS.
  231. You can do this by setting up a web server such as an
  232. <ulink url='https://en.wikipedia.org/wiki/Apache_HTTP_Server'>Apache HTTP Server</ulink>
  233. or
  234. <ulink url='https://en.wikipedia.org/wiki/Nginx'>Nginx</ulink>
  235. server in the cloud to host the directory.
  236. This directory must contain the published SDK.
  237. </para></listitem>
  238. <listitem><para>
  239. Set the
  240. <ulink url='&YOCTO_DOCS_REF_URL;#var-SDK_UPDATE_URL'><filename>SDK_UPDATE_URL</filename></ulink>
  241. variable to point to the corresponding HTTP or HTTPS URL.
  242. Setting this variable causes any SDK built to default to that
  243. URL and thus, the user does not have to pass the URL to the
  244. <filename>devtool sdk-update</filename> command as described
  245. in the
  246. "<link linkend='sdk-applying-updates-to-an-installed-extensible-sdk'>Applying Updates to an Installed Extensible SDK</link>"
  247. section.
  248. </para></listitem>
  249. <listitem><para>
  250. Build the extensible SDK normally (i.e., use the
  251. <filename>bitbake -c populate_sdk_ext</filename> <replaceable>imagename</replaceable>
  252. command).
  253. </para></listitem>
  254. <listitem><para>
  255. Publish the SDK using the following command:
  256. <literallayout class='monospaced'>
  257. $ oe-publish-sdk <replaceable>some_path</replaceable>/sdk-installer.sh <replaceable>path_to_shared_http_directory</replaceable>
  258. </literallayout>
  259. You must repeat this step each time you rebuild the SDK
  260. with changes that you want to make available through the
  261. update mechanism.
  262. </para></listitem>
  263. </orderedlist>
  264. </para>
  265. <para>
  266. Completing the above steps allows users of the existing installed
  267. SDKs to simply run <filename>devtool sdk-update</filename> to
  268. retrieve and apply the latest updates.
  269. See the
  270. "<link linkend='sdk-applying-updates-to-an-installed-extensible-sdk'>Applying Updates to an Installed Extensible SDK</link>"
  271. section for further information.
  272. </para>
  273. </section>
  274. <section id='sdk-changing-the-default-sdk-installation-directory'>
  275. <title>Changing the Default SDK Installation Directory</title>
  276. <para>
  277. When you build the installer for the Extensible SDK, the default
  278. installation directory for the SDK is based on the
  279. <ulink url='&YOCTO_DOCS_REF_URL;#var-DISTRO'><filename>DISTRO</filename></ulink>
  280. and
  281. <ulink url='&YOCTO_DOCS_REF_URL;#var-SDKEXTPATH'><filename>SDKEXTPATH</filename></ulink>
  282. variables from within the
  283. <ulink url='&YOCTO_DOCS_REF_URL;#ref-classes-populate-sdk-*'><filename>populate_sdk_base</filename></ulink>
  284. class as follows:
  285. <literallayout class='monospaced'>
  286. SDKEXTPATH ??= "~/${@d.getVar('DISTRO')}_sdk"
  287. </literallayout>
  288. You can change this default installation directory by specifically
  289. setting the <filename>SDKEXTPATH</filename> variable.
  290. </para>
  291. <para>
  292. While a number of ways exist through which you can set this variable,
  293. the method that makes the most sense is to set the variable in your
  294. distribution's configuration file.
  295. Doing so creates an SDK installer default directory that applies
  296. across your distribution.
  297. As an example, assume you have your own layer for your distribution
  298. named "meta-mydistro" and you are using the same type of file
  299. hierarchy as does the default "poky" distribution.
  300. If so, you could update the <filename>SDKEXTPATH</filename> variable
  301. in the
  302. <filename>~/meta-mydistro/conf/distro/mydistro.conf</filename> file
  303. using the following form:
  304. <literallayout class='monospaced'>
  305. SDKEXTPATH = "<replaceable>some_path_for_your_installed_sdk</replaceable>"
  306. </literallayout>
  307. </para>
  308. <para>
  309. After building your installer, running it prompts the user for
  310. acceptance of the
  311. <replaceable>some_path_for_your_installed_sdk</replaceable> directory
  312. as the default location to install the Extensible SDK.
  313. </para>
  314. </section>
  315. <section id='sdk-providing-additional-installable-extensible-sdk-content'>
  316. <title>Providing Additional Installable Extensible SDK Content</title>
  317. <para>
  318. If you want the users of an extensible SDK you build to be
  319. able to add items to the SDK without requiring the users to build
  320. the items from source, you need to do a number of things:
  321. <orderedlist>
  322. <listitem><para>
  323. Ensure the additional items you want the user to be able to
  324. install are already built:
  325. <itemizedlist>
  326. <listitem><para>
  327. Build the items explicitly.
  328. You could use one or more "meta" recipes that depend
  329. on lists of other recipes.
  330. </para></listitem>
  331. <listitem><para>
  332. Build the "world" target and set
  333. <filename>EXCLUDE_FROM_WORLD_pn-</filename><replaceable>recipename</replaceable>
  334. for the recipes you do not want built.
  335. See the
  336. <ulink url='&YOCTO_DOCS_REF_URL;#var-EXCLUDE_FROM_WORLD'><filename>EXCLUDE_FROM_WORLD</filename></ulink>
  337. variable for additional information.
  338. </para></listitem>
  339. </itemizedlist>
  340. </para></listitem>
  341. <listitem><para>
  342. Expose the <filename>sstate-cache</filename> directory
  343. produced by the build.
  344. Typically, you expose this directory by making it available
  345. through an
  346. <ulink url='https://en.wikipedia.org/wiki/Apache_HTTP_Server'>Apache HTTP Server</ulink>
  347. or
  348. <ulink url='https://en.wikipedia.org/wiki/Nginx'>Nginx</ulink>
  349. server.
  350. </para></listitem>
  351. <listitem><para>
  352. Set the appropriate configuration so that the produced SDK
  353. knows how to find the configuration.
  354. The variable you need to set is
  355. <ulink url='&YOCTO_DOCS_REF_URL;#var-SSTATE_MIRRORS'><filename>SSTATE_MIRRORS</filename></ulink>:
  356. <literallayout class='monospaced'>
  357. SSTATE_MIRRORS = "file://.* http://<replaceable>example</replaceable>.com/<replaceable>some_path</replaceable>/sstate-cache/PATH"
  358. </literallayout>
  359. You can set the <filename>SSTATE_MIRRORS</filename> variable
  360. in two different places:
  361. <itemizedlist>
  362. <listitem><para>
  363. If the mirror value you are setting is appropriate to
  364. be set for both the OpenEmbedded build system that is
  365. actually building the SDK and the SDK itself (i.e. the
  366. mirror is accessible in both places or it will fail
  367. quickly on the OpenEmbedded build system side, and its
  368. contents will not interfere with the build), then you
  369. can set the variable in your
  370. <filename>local.conf</filename> or custom distro
  371. configuration file.
  372. You can then "whitelist" the variable through
  373. to the SDK by adding the following:
  374. <literallayout class='monospaced'>
  375. SDK_LOCAL_CONF_WHITELIST = "SSTATE_MIRRORS"
  376. </literallayout>
  377. </para></listitem>
  378. <listitem><para>
  379. Alternatively, if you just want to set the
  380. <filename>SSTATE_MIRRORS</filename> variable's value
  381. for the SDK alone, create a
  382. <filename>conf/sdk-extra.conf</filename> file either in
  383. your
  384. <ulink url='&YOCTO_DOCS_REF_URL;#build-directory'>Build Directory</ulink>
  385. or within any layer and put your
  386. <filename>SSTATE_MIRRORS</filename> setting within
  387. that file.
  388. <note>
  389. This second option is the safest option should
  390. you have any doubts as to which method to use when
  391. setting <filename>SSTATE_MIRRORS</filename>.
  392. </note>
  393. </para></listitem>
  394. </itemizedlist>
  395. </para></listitem>
  396. </orderedlist>
  397. </para>
  398. </section>
  399. <section id='sdk-minimizing-the-size-of-the-extensible-sdk-installer-download'>
  400. <title>Minimizing the Size of the Extensible SDK Installer Download</title>
  401. <para>
  402. By default, the extensible SDK bundles the shared state artifacts for
  403. everything needed to reconstruct the image for which the SDK was built.
  404. This bundling can lead to an SDK installer file that is a Gigabyte or
  405. more in size.
  406. If the size of this file causes a problem, you can build an SDK that
  407. has just enough in it to install and provide access to the
  408. <filename>devtool command</filename> by setting the following in your
  409. configuration:
  410. <literallayout class='monospaced'>
  411. SDK_EXT_TYPE = "minimal"
  412. </literallayout>
  413. Setting
  414. <ulink url='&YOCTO_DOCS_REF_URL;#var-SDK_EXT_TYPE'><filename>SDK_EXT_TYPE</filename></ulink>
  415. to "minimal" produces an SDK installer that is around 35 Mbytes in
  416. size, which downloads and installs quickly.
  417. You need to realize, though, that the minimal installer does not
  418. install any libraries or tools out of the box.
  419. These libraries and tools must be installed either "on the fly" or
  420. through actions you perform using <filename>devtool</filename> or
  421. explicitly with the <filename>devtool sdk-install</filename> command.
  422. </para>
  423. <para>
  424. In most cases, when building a minimal SDK you need to also enable
  425. bringing in the information on a wider range of packages produced by
  426. the system.
  427. Requiring this wider range of information is particularly true
  428. so that <filename>devtool add</filename> is able to effectively map
  429. dependencies it discovers in a source tree to the appropriate recipes.
  430. Additionally, the information enables the
  431. <filename>devtool search</filename> command to return useful results.
  432. </para>
  433. <para>
  434. To facilitate this wider range of information, you would need to
  435. set the following:
  436. <literallayout class='monospaced'>
  437. SDK_INCLUDE_PKGDATA = "1"
  438. </literallayout>
  439. See the
  440. <ulink url='&YOCTO_DOCS_REF_URL;#var-SDK_INCLUDE_PKGDATA'><filename>SDK_INCLUDE_PKGDATA</filename></ulink>
  441. variable for additional information.
  442. </para>
  443. <para>
  444. Setting the <filename>SDK_INCLUDE_PKGDATA</filename> variable as
  445. shown causes the "world" target to be built so that information
  446. for all of the recipes included within it are available.
  447. Having these recipes available increases build time significantly and
  448. increases the size of the SDK installer by 30-80 Mbytes depending on
  449. how many recipes are included in your configuration.
  450. </para>
  451. <para>
  452. You can use
  453. <filename>EXCLUDE_FROM_WORLD_pn-</filename><replaceable>recipename</replaceable>
  454. for recipes you want to exclude.
  455. However, it is assumed that you would need to be building the "world"
  456. target if you want to provide additional items to the SDK.
  457. Consequently, building for "world" should not represent undue
  458. overhead in most cases.
  459. <note>
  460. If you set <filename>SDK_EXT_TYPE</filename> to "minimal",
  461. then providing a shared state mirror is mandatory so that items
  462. can be installed as needed.
  463. See the
  464. "<link linkend='sdk-providing-additional-installable-extensible-sdk-content'>Providing Additional Installable Extensible SDK Content</link>"
  465. section for more information.
  466. </note>
  467. </para>
  468. <para>
  469. You can explicitly control whether or not to include the toolchain
  470. when you build an SDK by setting the
  471. <ulink url='&YOCTO_DOCS_REF_URL;#var-SDK_INCLUDE_TOOLCHAIN'><filename>SDK_INCLUDE_TOOLCHAIN</filename></ulink>
  472. variable to "1".
  473. In particular, it is useful to include the toolchain when you
  474. have set <filename>SDK_EXT_TYPE</filename> to "minimal", which by
  475. default, excludes the toolchain.
  476. Also, it is helpful if you are building a small SDK for use with
  477. an IDE, such as <trademark class='trade'>Eclipse</trademark>, or some
  478. other tool where you do not want to take extra steps to install a
  479. toolchain.
  480. </para>
  481. </section>
  482. </appendix>
  483. <!--
  484. vim: expandtab tw=80 ts=4
  485. -->