[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-mono][PATCH] mono: Support to build mono without X support.

2015-03-19 Thread Alex J Lennon
On 18/03/2015 15:23, Enric Balletbo i Serra wrote: > Use PACKAGECONFIG to build a version of mono with or without X support in > function of x11 DISTRO_FEATURES. > > Tested on qemux86 (mono using X) and imx6 board (mono without X) > > Signed-off-by: Enric Balletbo i Serra Merged. Thanks Enric.

[yocto] [meta-freescale][meta-ivi][meta-fsl_ivi] build instruction update

2015-03-19 Thread eien sakebe
Hello everybody, im trying to build foton-image following instructions from https://github.com/Freescale/meta-fsl-ivi. My aim is to test IVI Layer manager with MXGAL graphics backend (really not interested to test X11/Wayland features). Im quite new to Yocto and getting more and more confused how t

[yocto] FW: [openssl-announce] OpenSSL Security Advisory

2015-03-19 Thread Sona Sarmadi
FYI, -Original Message- From: openssl-announce [mailto:openssl-announce-boun...@openssl.org] On Behalf Of OpenSSL Sent: den 19 mars 2015 15:12 To: OpenSSL Developer ML; OpenSSL User Support ML; OpenSSL Announce ML Subject: [openssl-announce] OpenSSL Security Advisory -BEGIN PGP SIGNE

[yocto] meta-toolchain not always relocatable

2015-03-19 Thread Marco Cavallini
Hi, I am facing to a very odd behaviour installing the resulting meta-toolchain. I launch poky-glibc-i686-meta-toolchain-cortexa9hf-vfp-neon-toolchain-1.7.1.sh If I install in the default directory or in /opt/poky/test it works as expected, but if I install in /opt/poky/1.7.1-cortexa9hf there is a

Re: [yocto] meta-toolchain not always relocatable

2015-03-19 Thread Paul Eggleton
Hi Marco, On Thursday 19 March 2015 17:46:44 Marco Cavallini wrote: > I am facing to a very odd behaviour installing the resulting meta-toolchain. > I launch > poky-glibc-i686-meta-toolchain-cortexa9hf-vfp-neon-toolchain-1.7.1.sh > > If I install in the default directory or in /opt/poky/test it w

Re: [yocto] How to support arm-none-eabi toolchain for u-boot on Amlogic

2015-03-19 Thread Christian Ege
Am 19.03.2015 00:35 schrieb "Khem Raj" : > > On Wed, Mar 18, 2015 at 12:55 PM, Christian Ege wrote: > > Hello, > > > > it looks like that Amlogic based devices like the ODROID-C1 [1] > > requires their u-boot compiled with an arm-none-eabi toolchain. The > > rest kernel and rootfs is compiled with

Re: [yocto] meta-toolchain not always relocatable

2015-03-19 Thread akuster808
On 03/19/2015 10:20 AM, Paul Eggleton wrote: Hi Marco, On Thursday 19 March 2015 17:46:44 Marco Cavallini wrote: I am facing to a very odd behaviour installing the resulting meta-toolchain. I launch poky-glibc-i686-meta-toolchain-cortexa9hf-vfp-neon-toolchain-1.7.1.sh If I install in the def

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

2015-03-19 Thread Khem Raj
> On Mar 19, 2015, at 2:07 AM, Priya Agarwal > wrote: > > 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 > f

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

2015-03-19 Thread Priya Agarwal
I have edited the Makefile.am as well in this way: squid_LDADD += -lusdpaa_of Then I just retarred squid code and build it again. And The libraries are shown in the compile command as well, when I see the log.do_compile generated during the build. Check Line number 403 in this pastebin link. (ct

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

2015-03-19 Thread zhenhua....@freescale.com
The following article would be helpful for you. http://stackoverflow.com/questions/2057472/howto-add-a-link-to-a-library-in-autoconf-configure-script-makefile Best Regards, Zhenhua From: meta-freescale-boun...@yoctoproject.org [mailto:meta-freescale-boun...@yoctoproject.org] On Behalf Of Priy