Add native gcc to the target image

From KoanSoftware Wiki
Revision as of 09:07, 8 July 2020 by Koan (talk | contribs) (Created page with "== Add native gcc to the Poky linux target image == The Yocto Project gives you the possibility of use the power of your Host system and cross-compile everything instead of b...")

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Add native gcc to the Poky linux target image

The Yocto Project gives you the possibility of use the power of your Host system and cross-compile everything instead of building source code directly on the target system.

However if you really need to build on the Target system you may need to have make and gcc installed in the final image.

The easiest way to do that is adding the following line to the local.conf or your image recipe file.

IMAGE_INSTALL_append = " packagegroup-core-buildessential"