From ce2707487e52aab33ac488e59570187b0538ee5e Mon Sep 17 00:00:00 2001 From: Scott Rifenbark Date: Thu, 15 Jun 2017 07:12:41 -0700 Subject: [PATCH] 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 (From yocto-docs rev: fd17ac96a44d08f7f2798e69cd923e0726a0754a) Signed-off-by: Scott Rifenbark Signed-off-by: Richard Purdie --- documentation/sdk-manual/sdk-appendix-obtain.xml | 10 +++++----- 1 file 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 @@ By default, this toolchain does not build static binaries. If you want to use the toolchain to build these types of - libraries, you need to be sure your image has the + libraries, you need to be sure your SDK has the appropriate static development libraries. Use the - IMAGE_INSTALL + TOOLCHAIN_TARGET_TASK variable inside your local.conf file - to install the appropriate library packages. - Following is an example using glibc + to install the appropriate library packages in the SDK. + Following is an example using libc static development libraries: - IMAGE_INSTALL_append = " glibc-staticdev" + TOOLCHAIN_TARGET_TASK_append = " libc-staticdev"