Re: [Discuss-gnuradio] gnuradio importerror undefined symbol

2015-03-06 Thread Mohammad Ghassemi
I added set(GR_REQUIRED_COMPONENTS RUNTIME FILTER) set(GR_REQUIRED_COMPONENTS RUNTIME FILTER DIGITAL) and ${GNURADIO_ALL_LIBRARIES} to my CMakeLists.txt and the problem solved, but It's interesting that I had to edit CMakeLists.txt to make it work, I thought gnuradio would do it automaticall

Re: [Discuss-gnuradio] gnuradio importerror undefined symbol

2015-03-06 Thread Mohammad Ghassemi
Hello Marcus , thank you I found find_package(Gnuradio "3.7.2" REQUIRED) in my CMakelists.txt file and the output for "gnuradio-config-info --version" is v3.7.6.1-103-g8ecfd13a is this the problem? How do i fix that? -- View this message in context: http://gnuradio.4.n7.nabble.com/gnuradio

Re: [Discuss-gnuradio] gnuradio importerror undefined symbol

2015-03-04 Thread Mohammad Ghassemi
when I run : c++filt _ZN2gr6filter6kernel14fft_filter_cccC1EiRKSt6vectorISt7complexIfESaIS5_EEi this is the output: gr::filter::kernel::fft_filter_ccc::fft_filter_ccc(int, std::vector, std::allocator > > const&, int) this definition is different from the one I'm using, I cant fine this in C++ A

[Discuss-gnuradio] gnuradio importerror undefined symbol

2015-03-04 Thread Mohammad Ghassemi
I'm new to Gnuradio and python. I'm trying to write a correlation block, somewhere in my code I use fft filter: gr::filter::kernel::fft_filter_ccc *d_filter; d_filter = new gr::filter::kernel::fft_filter_ccc(1, x_vector); d_filter->filter(noutput_items,in_y,out); I run cmake ../ make and it c