Re: [yocto] Error on building

2014-03-05 Thread ratheesh kannoth
On Wed, Mar 5, 2014 at 10:31 PM, Alex J Lennon wrote: > > On 05/03/2014 16:54, ratheesh kannoth wrote: >> On Wed, Mar 5, 2014 at 10:07 PM, Alex J Lennon >> wrote: >>> On 05/03/2014 16:15, ratheesh kannoth wrote: >>>> On Wed, Mar 5, 2014 at 2:55 PM, Alex

Re: [yocto] Error on building

2014-03-05 Thread ratheesh kannoth
On Wed, Mar 5, 2014 at 10:07 PM, Alex J Lennon wrote: > > On 05/03/2014 16:15, ratheesh kannoth wrote: >> On Wed, Mar 5, 2014 at 2:55 PM, Alex J Lennon >> wrote: >>> Ratheesh, I believe you would need to ensure that any static libraries >>> built are either

Re: [yocto] Error on building

2014-03-05 Thread ratheesh kannoth
On Wed, Mar 5, 2014 at 2:55 PM, Alex J Lennon wrote: > Ratheesh, I believe you would need to ensure that any static libraries > built are either removed or packaged appropriately so as not to trigger > the Q/A error. > > One approach is to modify the recipe to add the static library to the > -stat

[yocto] Error on building

2014-03-05 Thread ratheesh kannoth
I am getting following error. what is the problem. ? How can i get around this ? ERROR: QA Issue: non -staticdev package contains static .a library: sf-test path '/work/x86_64-wrs-linux/sf/1.0-r0/packages-split/sf-test/lib/snort_dynamicengine/libsf_engine.a' ERROR: QA Issue: sf-test: /work/x86_6

[yocto] RDEPENDS

2014-02-09 Thread ratheesh kannoth
I am trying to add a package X.Package X depends on packages A . When i was configuring X , i have given include path of A and library path of A. because X is dynamically linked to libA. X.bb -- do_configure() { cd ${S} ./configure -I ../../A/include -L ../../A/src/.libs } I co