Re: [yocto] How to add my own c++ project into a Yocto distro

2016-09-28 Thread Paul Eggleton
On Fri, 23 Sep 2016 20:10:17 Fred Ollinger wrote: > Here's how to write a recipe: > > > http://www.yoctoproject.org/docs/1.6/dev-manual/dev-manual.html#new-recipe-w > riting-a-new-recipe That's the 1.6 version - you may want the "current" link so that you're always looking the most recent

Re: [yocto] How to add my own c++ project into a Yocto distro

2016-09-23 Thread Daniel.
I'm building libraries at my work with plain makefiles and getting the code from SVN. There is no secret just follow the docs... One thing to know is about compiling using run_oemake instead of simple "make" at do_compile and that you may want to use CFLAGS_prefix = "some flags". Dependencies

Re: [yocto] How to add my own c++ project into a Yocto distro

2016-09-23 Thread Fred Ollinger
Here's how to write a recipe: http://www.yoctoproject.org/docs/1.6/dev-manual/dev-manual.html#new-recipe-writing-a-new-recipe When we started, we also had custom Makefiles. However, we found it was easier to add our recipes to automake before making a bitbake recipe. Automake is a challenge