summaryrefslogtreecommitdiffstats
path: root/documentation/adt-manual
diff options
context:
space:
mode:
authorMaxin B. John <maxin.john@enea.com>2013-10-31 15:01:25 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-11-01 17:46:48 +0000
commit75bed4086eb83f1d24c31392f3dd54aa5c3679b1 (patch)
tree2a23b0d4663f91649d435ab06648ebd8f03c29e4 /documentation/adt-manual
parent2093e92ef47508792a47e4ab88415a5f612b2b83 (diff)
downloadpoky-75bed4086eb83f1d24c31392f3dd54aa5c3679b1.tar.gz
adt-manual: Added note for static builds using -c populate_sdk
Documentation fix for [YOCTO #5347] SDK created useing the "-c populate_sdk" will not support static binary build without proper staticdev library packages. I have added a note to inform the user about this limitation. (From yocto-docs rev: ce9e4815e700cc22d3f54ab0621c1a22091c2b54) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation/adt-manual')
-rw-r--r--documentation/adt-manual/adt-prepare.xml25
1 files changed, 20 insertions, 5 deletions
diff --git a/documentation/adt-manual/adt-prepare.xml b/documentation/adt-manual/adt-prepare.xml
index 152c7fbfa6..02416b3cda 100644
--- a/documentation/adt-manual/adt-prepare.xml
+++ b/documentation/adt-manual/adt-prepare.xml
@@ -617,12 +617,27 @@
617 variable is correctly set if you are building a toolchain designed to 617 variable is correctly set if you are building a toolchain designed to
618 run on an architecture that differs from your current development host 618 run on an architecture that differs from your current development host
619 machine (i.e. the build machine). 619 machine (i.e. the build machine).
620 </para> 620 </para>
621 621
622 <para> 622 <para>
623 When the BitBake command completes, the toolchain installer will be in 623 When the BitBake command completes, the toolchain installer will be in
624 <filename>tmp/deploy/sdk</filename> in the Build Directory. 624 <filename>tmp/deploy/sdk</filename> in the Build Directory.
625 </para> 625 <note>
626 By default, this toolchain does not build static binaries.
627 If you want to use the toolchain to build these types of libraries,
628 you need to be sure your image has the appropriate static
629 development libraries.
630 Use the
631 <ulink url='&YOCTO_DOCS_REF_URL;#var-IMAGE_INSTALL'><filename>IMAGE_INSTALL</filename></ulink>
632 variable inside your <filename>local.conf</filename> file to
633 install the appropriate library packages.
634 Following is an example using <filename>eglibc</filename> static
635 development libraries:
636 <literallayout class='monospaced'>
637 IMAGE_INSTALL_append = " eglibc-staticdev"
638 </literallayout>
639 </note>
640 </para>
626</section> 641</section>
627 642
628</chapter> 643</chapter>