summaryrefslogtreecommitdiffstats
path: root/documentation/adt-manual/adt-prepare.xml
diff options
context:
space:
mode:
authorMaxin B. John <maxin.john@enea.com>2013-10-31 08:01:25 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-11-01 17:09:59 +0000
commit98f631a76b011832d283dc3590b4a7c32c69903b (patch)
tree10c5feedd9475660d4e278eb9b33c5c380f56900 /documentation/adt-manual/adt-prepare.xml
parent3abf3a6e76f77985d6499771426c357502d016cf (diff)
downloadpoky-98f631a76b011832d283dc3590b4a7c32c69903b.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: 91409d77d68e55f4089cab3e7f48dd385dddff2e) 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/adt-prepare.xml')
-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>