Linux OS Build ...
  • Start Yocto Project ...
  • Build Yocto Project Step By Step¶
  • Introducing the Yocto Project Development Environment¶
  • How to install apt-get to the Yocto Project image
  • Installing gcc/g++ toolchain in yocto project
  • Installing GDB in yocto project
  • Installing ssh-server-dropbear for embedded linux in yocto project
  • Add Python To A Build
  • Add Boost To A Build
  • Adding Valgrind To Build
  • How To Add A Custom App To A Yocto Build
  • 🖥️Raspberry Pi
  • Communication Protocol
Powered by GitBook
On this page

Add Boost To A Build

Add the following line of code to your build/conf/local.conf file:

IMAGE_INSTALL_append = " boost"

Choose an image, for example, core-image-minimal

Re-Compile Image

#compile your source code ..
$ time bitbake <Your Image-Name>

When adding boost, it is work recreating the SDK so that you have the available libraries for cross-compiling.

PreviousAdd Python To A BuildNextAdding Valgrind To Build

Last updated 2 years ago