sdk-manual: Added note to link to the wiki on building an SDK

(From yocto-docs rev: 29704fa495a97279c5d4e29bee22f0aaa9e15cba)

Signed-off-by: Scott Rifenbark <srifenbark@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Scott Rifenbark 2016-08-19 13:12:18 -07:00 committed by Richard Purdie
parent 4bdd0cfffa
commit 4d1e6423ba
1 changed files with 23 additions and 13 deletions

View File

@ -91,20 +91,30 @@
When the <filename>bitbake</filename> command completes, the toolchain When the <filename>bitbake</filename> command completes, the toolchain
installer will be in installer will be in
<filename>tmp/deploy/sdk</filename> in the Build Directory. <filename>tmp/deploy/sdk</filename> in the Build Directory.
<note> <note><title>Notes</title>
By default, this toolchain does not build static binaries. <itemizedlist>
If you want to use the toolchain to build these types of libraries, <listitem><para>
you need to be sure your image has the appropriate static By default, this toolchain does not build static binaries.
development libraries. If you want to use the toolchain to build these types of
Use the libraries, you need to be sure your image has the
<ulink url='&YOCTO_DOCS_REF_URL;#var-IMAGE_INSTALL'><filename>IMAGE_INSTALL</filename></ulink> appropriate static development libraries.
variable inside your <filename>local.conf</filename> file to Use the
install the appropriate library packages. <ulink url='&YOCTO_DOCS_REF_URL;#var-IMAGE_INSTALL'><filename>IMAGE_INSTALL</filename></ulink>
Following is an example using <filename>glibc</filename> static variable inside your <filename>local.conf</filename> file
development libraries: to install the appropriate library packages.
<literallayout class='monospaced'> Following is an example using <filename>glibc</filename>
static development libraries:
<literallayout class='monospaced'>
IMAGE_INSTALL_append = " glibc-staticdev" IMAGE_INSTALL_append = " glibc-staticdev"
</literallayout> </literallayout>
</para></listitem>
<listitem><para>
For additional information on building the installer,
see the
<ulink url='https://wiki.yoctoproject.org/wiki/TipsAndTricks/RunningEclipseAgainstBuiltImage'>Cookbook guide to Making an Eclipse Debug Capable Image</ulink>
wiki page.
</para></listitem>
</itemizedlist>
</note> </note>
</para> </para>
</section> </section>