Re: [Discuss-gnuradio] How to link gnuradio library with applications outside of gnuradio/usrp?

2011-08-17 Thread Alexandru Csete
On Wed, Aug 17, 2011 at 5:08 AM, Marcus M gnu.f...@gmail.com wrote: Actually I wanted to profile some classes that I wrote for my gnuradio application. In these classes I use gr_complex and the gri_fftw class. As I do not know how to use gprof in a gnuradio application I thought I will use the

Re: [Discuss-gnuradio] How to link gnuradio library with applications outside of gnuradio/usrp?

2011-08-17 Thread Marcus Müller
Hi Marcus M (cool name, actually), gr_complex is an STL complexfloat, so you won't need the complete GR core to use it: gnuradio-core/src/lib/runtime/gr_complex.h:typedef std::complexfloatgr_complex; gri_fft requires only gr_complex (see above) and gr_sys_paths, which is essentially

Re: [Discuss-gnuradio] How to link gnuradio library with applications outside of gnuradio/usrp?

2011-08-17 Thread Marcus M
@Alexander, thanks for your reply, it worked like a charm. On Wed, Aug 17, 2011 at 8:48 AM, Marcus Müller g...@mueller-marcus.eu wrote: Hi Marcus M (cool name, actually), gr_complex is an STL complexfloat, so you won't need the complete GR core to use it:

[Discuss-gnuradio] How to link gnuradio library with applications outside of gnuradio/usrp?

2011-08-16 Thread Marcus M
Hi, I want to use the C++ classes for FFTW that are present in gnuradio for a non-gnuradio application. How do I link the gnuradio library to such an application? Thanks ___ Discuss-gnuradio mailing list Discuss-gnuradio@gnu.org

Re: [Discuss-gnuradio] How to link gnuradio library with applications outside of gnuradio/usrp?

2011-08-16 Thread Marcus D. Leech
On 08/16/2011 11:00 PM, Marcus M wrote: Hi, I want to use the C++ classes for FFTW that are present in gnuradio for a non-gnuradio application. How do I link the gnuradio library to such an application? Thanks ___ Discuss-gnuradio mailing list

Re: [Discuss-gnuradio] How to link gnuradio library with applications outside of gnuradio/usrp?

2011-08-16 Thread Marcus M
Actually I wanted to profile some classes that I wrote for my gnuradio application. In these classes I use gr_complex and the gri_fftw class. As I do not know how to use gprof in a gnuradio application I thought I will use the classes outside of gnuradio to run the profile tests. So that's why I