summaryrefslogtreecommitdiffstats
path: root/documentation
diff options
context:
space:
mode:
authorScott Rifenbark <srifenbark@gmail.com>2017-06-15 07:12:41 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-06-22 09:18:49 +0100
commitce2707487e52aab33ac488e59570187b0538ee5e (patch)
tree5dc54d8613d044bff8b07ee35e5f492e6b0c71da /documentation
parenta1f1b7f111d939f918663caf9ad0facf7f61fd92 (diff)
downloadpoky-ce2707487e52aab33ac488e59570187b0538ee5e.tar.gz
sdk-manual: Updated the note for building SDK Installer
For development purposes, static libraries need to be present only in the SDK. We do not need those static libraries in the image for most scenarios. So, replace IMAGE_INSTALL with TOOLCHAIN_TARGET_TASK in the documentation. I updated the note to reflect this. Suggested-by: Maxin B. John <maxin.john@intel.com> (From yocto-docs rev: fd17ac96a44d08f7f2798e69cd923e0726a0754a) Signed-off-by: Scott Rifenbark <srifenbark@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation')
-rw-r--r--documentation/sdk-manual/sdk-appendix-obtain.xml10
1 files changed, 5 insertions, 5 deletions
diff --git a/documentation/sdk-manual/sdk-appendix-obtain.xml b/documentation/sdk-manual/sdk-appendix-obtain.xml
index 3156f77258..d0cbf9c85e 100644
--- a/documentation/sdk-manual/sdk-appendix-obtain.xml
+++ b/documentation/sdk-manual/sdk-appendix-obtain.xml
@@ -96,16 +96,16 @@
96 <listitem><para> 96 <listitem><para>
97 By default, this toolchain does not build static binaries. 97 By default, this toolchain does not build static binaries.
98 If you want to use the toolchain to build these types of 98 If you want to use the toolchain to build these types of
99 libraries, you need to be sure your image has the 99 libraries, you need to be sure your SDK has the
100 appropriate static development libraries. 100 appropriate static development libraries.
101 Use the 101 Use the
102 <ulink url='&YOCTO_DOCS_REF_URL;#var-IMAGE_INSTALL'><filename>IMAGE_INSTALL</filename></ulink> 102 <ulink url='&YOCTO_DOCS_REF_URL;#var-TOOLCHAIN_TARGET_TASK'><filename>TOOLCHAIN_TARGET_TASK</filename></ulink>
103 variable inside your <filename>local.conf</filename> file 103 variable inside your <filename>local.conf</filename> file
104 to install the appropriate library packages. 104 to install the appropriate library packages in the SDK.
105 Following is an example using <filename>glibc</filename> 105 Following is an example using <filename>libc</filename>
106 static development libraries: 106 static development libraries:
107 <literallayout class='monospaced'> 107 <literallayout class='monospaced'>
108 IMAGE_INSTALL_append = " glibc-staticdev" 108 TOOLCHAIN_TARGET_TASK_append = " libc-staticdev"
109 </literallayout> 109 </literallayout>
110 </para></listitem> 110 </para></listitem>
111 <listitem><para> 111 <listitem><para>