Re: [yocto] libtool version mismatch

2012-01-24 Thread Kevin Baker
On Tue, Jan 24, 2012 at 11:46 AM, autif khan wrote: > > Can you point me to an existing recipe that already does something > similar? I am not sure what I am looking for. > > Thanks for all the help! > > Cross-compiling mono is messy, at least judging from the existing recipe from OE-classic: ht

Re: [yocto] libtool version mismatch

2012-01-24 Thread autif khan
On Tue, Jan 24, 2012 at 12:09 PM, Khem Raj wrote: > On Tue, Jan 24, 2012 at 8:13 AM, autif khan wrote: >> >> do_configure_prepend() { >>    autoreconf -Wcross --verbose --install --force || bbnote "mono >> failed to autoreconf" >> } >> >> do_compile_prepend() { >>    ln -s i586-poky-linux-libtool

Re: [yocto] libtool version mismatch

2012-01-24 Thread Khem Raj
On Tue, Jan 24, 2012 at 8:13 AM, autif khan wrote: > > do_configure_prepend() { >    autoreconf -Wcross --verbose --install --force || bbnote "mono > failed to autoreconf" > } > > do_compile_prepend() { >    ln -s i586-poky-linux-libtool libtool > } get rid of above these are not needed when reci

Re: [yocto] libtool version mismatch

2012-01-24 Thread autif khan
On Tue, Jan 24, 2012 at 10:44 AM, Khem Raj wrote: > On Tue, Jan 24, 2012 at 7:18 AM, autif khan wrote: >> Error: >> | libtool: Version mismatch error.  This is libtool 2.4, but the >> | libtool: definition of this LT_INIT comes from libtool 2.2.6. >> | libtool: You should recreate aclocal.m4 with

Re: [yocto] libtool version mismatch

2012-01-24 Thread Khem Raj
On Tue, Jan 24, 2012 at 7:18 AM, autif khan wrote: > Error: > | libtool: Version mismatch error.  This is libtool 2.4, but the > | libtool: definition of this LT_INIT comes from libtool 2.2.6. > | libtool: You should recreate aclocal.m4 with macros from libtool 2.4 > | libtool: and run autoconf ag

[yocto] libtool version mismatch

2012-01-24 Thread autif khan
I have been working on writing a recipe for mono. I have successfully written one for lbgdiplus and am making headway with mono. Mono comes with libtool version 2.2.6, Yocto uses 2.4 After do_configure(), when do_complie() is being executed, I am getting the following error for the following comm