[yocto] Linking of external libraries in the recipe

2015-03-12 Thread Priya Agarwal
Hello, I have taken a recipe for the package squid from OpenEmbedded.org and have built it along with the kernel image. Now I want to edit its recipe so that it will include some external libraries. But these libraries are the ones that are generated during the build. So how do I edit the recipe

Re: [yocto] Linking of external libraries in the recipe

2015-03-12 Thread Priya Agarwal
it/lib_powerpc/*) On Thu, Mar 12, 2015 at 9:23 PM, Benjamin Esquivel < benjamin.esqui...@linux.intel.com> wrote: > On Thu, 2015-03-12 at 18:00 +0530, Priya Agarwal wrote: > > Hello, > > > > > > I have taken a recipe for the package squid from OpenEmbedded.org and

Re: [yocto] Linking of external libraries in the recipe

2015-03-12 Thread Priya Agarwal
Okay I think I understood. It has to be DEPENDS = "usdpaa" . Basically the recipe which is building the libraries is /meta-fsl-ppc/recipe-tools/usdpaa/usdpaa_git.bb. Thanks. On Thu, Mar 12, 2015 at 9:58 PM, Priya Agarwal < priya_agar...@students.iitmandi.ac.in> wrote: > I

Re: [yocto] Linking of external libraries in the recipe

2015-03-14 Thread Priya Agarwal
ese extra parameters LDFLAGS,LIBS,CXXFLAGS. On Thu, Mar 12, 2015 at 10:39 PM, Priya Agarwal < priya_agar...@students.iitmandi.ac.in> wrote: > Okay I think I understood. It has to be DEPENDS = "usdpaa" . Basically the > recipe which is building the libraries is > /meta-fsl-pp

Re: [yocto] [Yocto-builds] Linking of external libraries in the recipe

2015-03-15 Thread Priya Agarwal
iling. configure: WARNING: you should use --build, --host, --target configure: error: invalid variable name: `' Didn't work even with single inverted comma. On Sun, Mar 15, 2015 at 2:20 PM, Khem Raj wrote: > On Sat, Mar 14, 2015 at 11:23 PM, Priya Agarwal > wrote: > > I wrot

[yocto] Including Static Libraries from sysroot in an autotools based package

2015-03-19 Thread Priya Agarwal
Hi, I need to link some libraries which are in sysroot into my source code. These are usdpaa libraries. I added DEPENDS += "usdpaa" in .bb file. Apart from that also changed the Makefile.am of my source to include the following: area_LDADD = -lusdpaa_of Then I ran aclocal, autoconf, automake --ad

Re: [yocto] Including Static Libraries from sysroot in an autotools based package

2015-03-19 Thread Priya Agarwal
Hi, I need to link some libraries which are in sysroot into my source code. These are usdpaa libraries. I added DEPENDS += "usdpaa" in .bb file. Apart from that also changed the Makefile.am of my source to include the following: area_LDADD = -lusdpaa_of Then I ran aclocal, autoconf, automake --ad

Re: [yocto] [meta-freescale] Including Static Libraries from sysroot in an autotools based package

2015-03-19 Thread Priya Agarwal
Raj wrote: > > On Mar 19, 2015, at 2:07 AM, Priya Agarwal < > priya_agar...@students.iitmandi.ac.in> wrote: > > Hi, > > I need to link some libraries which are in sysroot into my source code. > These are usdpaa libraries. > > I added DEPENDS += "usdp

Re: [yocto] [meta-freescale] Including Static Libraries from sysroot in an autotools based package

2015-03-20 Thread Priya Agarwal
Hello, Sorry to ask this question but I am unable to find any answer in reference manuals. ${CC} is a c compiler. For c++ is it ${CXX} or something else. Thanks. On Fri, Mar 20, 2015 at 9:07 AM, Priya Agarwal < priya_agar...@students.iitmandi.ac.in> wrote: > I have edited the Makef

[yocto] Fwd: How to remove: WARNING: No bb files matched BBFILE_PATTERN_mylayer '^/media/NewVolume/yocto/meta-mylayer/'

2015-02-16 Thread Priya Agarwal
Hi, I want to compile a c++ file(tcpserver.cpp) and build it along with my kernel image. I am using QorIQ SDK1.4. I created a new layer meta-mylayer in yocto/, wrote a simple recipe file, and edited bblayers.conf and local.conf. But I am getting the following error: WARNING: No bb files matched

[yocto] Error while building my own package

2015-02-28 Thread Priya Agarwal
Hi, I want to add a very simple autotools based package to the kernel image (for freescale's t4240qds board) I built with yocto for testing purposes. Background: I wrote a simple c++ code, autoconf and automake'd it and compressed it as tar.bz2 file. Wrote a simple recipe for it. I have attached

Re: [yocto] Error while building my own package

2015-02-28 Thread Priya Agarwal
Oh yes. I forgot 'md5' part in LIC_FILE_CHKSUM. Sorry and thanks. On Sat, Feb 28, 2015 at 7:36 PM, Gary Thomas wrote: > On 2015-02-28 06:08, Priya Agarwal wrote: > >> Hi, >> >> I want to add a very simple autotools based package to the kernel image >>