[Discuss-gnuradio] make fails on new svn

2006-08-04 Thread Achilleas Anastasopoulos
This is my first attempt building from the svn. After: $ svn co http://gnuradio.utah.edu/svn/gnuradio/trunk gnuradio_svn $ cd gnuradio_svn $ ./bootstrap $ ./configure I get: *** The following GNU Radio components have been success

Re: [Discuss-gnuradio] make fails on new svn

2006-08-04 Thread Johnathan Corgan
Achilleas Anastasopoulos wrote: > Any thoughts? For some reason there is an extra '.libs' added to the path to where it's looking for libgnuradio-core.so and for libusrp.so; I don't know why. But it's very likely a bug and not anything you are doing. Can you log in to Trac as guest (password 'g

Re: [Discuss-gnuradio] make fails on new svn

2006-08-04 Thread Johnathan Corgan
Achilleas Anastasopoulos wrote: > However, make fails at usrp: Can you please check out the following branch: http://gnuradio.utah.edu/svn/gnuradio/branches/developers/jcorgan/ticket-11 ...and try it again? I've disabled all the components except gnuradio-core, usrp, and gr-usrp, so it should

Re: [Discuss-gnuradio] make fails on new svn

2006-08-04 Thread Achilleas Anastasopoulos
Johnathan , everything seems to work fine now. make and make check succeed. btw, my gcc version is gcc --version gcc (GCC) 3.4.3 20050227 (Red Hat 3.4.3-22.fc3) Copyright (C) 2004 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty;

Re: [Discuss-gnuradio] make fails on new svn

2006-08-04 Thread Johnathan Corgan
Achilleas Anastasopoulos wrote: > everything seems to work fine now. > make and make check succeed. Ok, thanks. > btw, my gcc version is > > gcc --version > gcc (GCC) 3.4.3 20050227 (Red Hat 3.4.3-22.fc3) For what it's worth, gcc 3.4.3 seems to interact differently with libtool than gcc 4.x.

Re: [Discuss-gnuradio] make fails on new svn

2006-08-04 Thread Achilleas Anastasopoulos
Jonathan, The full tree compiles succesfully with gcc 3.4.3 now ! Cheers, Achilleas For what it's worth, gcc 3.4.3 seems to interact differently with libtool than gcc 4.x. I haven't pinned it down but the change I made now works with both. If you still have that branch checked out, can you

Re: [Discuss-gnuradio] make fails on new svn

2006-08-04 Thread Johnathan Corgan
Achilleas Anastasopoulos wrote: > The full tree compiles succesfully with gcc 3.4.3 now ! Thanks for testing this out. -Johnathan ___ Discuss-gnuradio mailing list Discuss-gnuradio@gnu.org http://lists.gnu.org/mailman/listinfo/discuss-gnuradio

Re: [Discuss-gnuradio] make fails on new svn

2006-08-05 Thread Johnathan Corgan
Achilleas Anastasopoulos wrote: > I was wondering if you can commit this change that > fixed the error also to my wip directory: > http://gnuradio.utah.edu/svn/gnuradio/branches/developers/anastas/wip/ > since it does not yet compile with gcc3.4, > or is this something that I am supposed to do? I

Re: [Discuss-gnuradio] make fails on new svn

2006-08-05 Thread Eric Blossom
On Fri, Aug 04, 2006 at 09:33:00PM -0700, Johnathan Corgan wrote: > Achilleas Anastasopoulos wrote: > > > Any thoughts? > > For some reason there is an extra '.libs' added to the path to where > it's looking for libgnuradio-core.so and for libusrp.so; I don't know > why. But it's very likely a b

Re: [Discuss-gnuradio] make fails on new svn

2006-08-05 Thread Johnathan Corgan
Eric Blossom wrote: > FYI, the .libs should have never been in the path. > The .la file, which libtool looks for, is contained in foo, not foo/.libs Correct. For some reason the extra .libs I put in there was being "overlooked" when compiling with the combination of libtool & gcc on our machines