On Wed, Aug 17, 2011 at 5:08 AM, Marcus M <[email protected]> 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 classes outside of gnuradio to run the profile tests. So that's why I > want to link the gr_complex and gri_fftw in the test application.
Hi Marcus, Both are in the gnuradio-core package and you can use pkg-config to get the appropriate flags: pkg-config --libs gnuradio-core You can use the above directly in the linker command by surrounding it with back-quotes(?) `pkg-config --libs gnuradio-core` Alex _______________________________________________ Discuss-gnuradio mailing list [email protected] https://lists.gnu.org/mailman/listinfo/discuss-gnuradio
