Re: [yocto] [PATCH] Added missing LDFLAGS in sample recipe for morty branch

2017-07-03 Thread Burton, Ross
On 1 July 2017 at 15:53, Khem Raj wrote: > > do_compile() { > > - ${CC} helloworld.c -o helloworld > > + ${CC} ${LDFLAGS} helloworld.c -o helloworld > > perhaps doing compile and link in two steps where CFLAGS and LDFLAGS are > used would be clearer > >

Re: [yocto] [PATCH] Added missing LDFLAGS in sample recipe for morty branch

2017-07-02 Thread Khem Raj
On Sun, Jul 2, 2017 at 1:01 AM, Pierre FICHEUX wrote: > Hi, > > Yes but it was fixed that way in the Pyro branch. > I thought this patch was being proposed for master. If yes then different solution in pyro should not be a big problem. you can always backport the new

Re: [yocto] [PATCH] Added missing LDFLAGS in sample recipe for morty branch

2017-07-02 Thread Pierre FICHEUX
Hi, Yes but it was fixed that way in the Pyro branch. do_compile() { ${CC} ${LDFLAGS} helloworld.c -o helloworld } regards -- Pierre FICHEUX -/- CTO Smile-ECS, France -\- pierre.fich...@smile.fr http://www.smile.fr

Re: [yocto] [PATCH] Added missing LDFLAGS in sample recipe for morty branch

2017-07-01 Thread Khem Raj
On 7/1/17 12:52 AM, Pierre FICHEUX wrote: > This problem causes the following error : > > ERROR: example-0.1-r0 do_package_qa: QA Issue: No GNU_HASH in the elf binary > > Signed-off-by: Pierre FICHEUX > --- >

[yocto] [PATCH] Added missing LDFLAGS in sample recipe for morty branch

2017-07-01 Thread Pierre FICHEUX
This problem causes the following error : ERROR: example-0.1-r0 do_package_qa: QA Issue: No GNU_HASH in the elf binary Signed-off-by: Pierre FICHEUX --- .../target/arch/layer/recipes-example/example/example-recipe-0.1.bb | 2 +- 1 file changed, 1 insertion(+), 1