From 98f631a76b011832d283dc3590b4a7c32c69903b Mon Sep 17 00:00:00 2001 From: "Maxin B. John" Date: Thu, 31 Oct 2013 08:01:25 -0700 Subject: 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 Signed-off-by: Richard Purdie --- documentation/adt-manual/adt-prepare.xml | 25 ++++++++++++++++++++----- 1 file changed, 20 insertions(+), 5 deletions(-) (limited to 'documentation/adt-manual/adt-prepare.xml') 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 @@ variable is correctly set if you are building a toolchain designed to run on an architecture that differs from your current development host machine (i.e. the build machine). - + - - When the BitBake command completes, the toolchain installer will be in - tmp/deploy/sdk in the Build Directory. - + + When the BitBake command completes, the toolchain installer will be in + tmp/deploy/sdk in the Build Directory. + + 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 appropriate static + development libraries. + Use the + IMAGE_INSTALL + variable inside your local.conf file to + install the appropriate library packages. + Following is an example using eglibc static + development libraries: + + IMAGE_INSTALL_append = " eglibc-staticdev" + + + -- cgit v1.2.3-54-g00ecf