discuss-gnuradio
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Problem with using gr-filter in my OOT module


From: Ron Economos
Subject: Re: Problem with using gr-filter in my OOT module
Date: Mon, 27 Jun 2022 15:08:07 -0700
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.9.1

Niko,

You have to add a couple of things to some CMake files.

1) Add the component(s) to the top level CMakeLists.txt. For example

https://github.com/drmpeg/gr-atsc3/blob/master/CMakeLists.txt#L77

2) Add the libraries to the linker in lib/CMakeLists.txt. For example:

https://github.com/drmpeg/gr-atsc3/blob/master/lib/CMakeLists.txt#L39

Ron

On 6/27/22 11:46, Nikoloz Glonti wrote:

Dear Gnuradio community,

I'm having a problem with my OOT module which I like to use gr-filter.

Error looks like that.

File "/usr/local/lib/python3.10/site-packages/gnuradio/spektrumcsi/__init__.py", line 18, in <module>
    from .spektrumcsi_python import *
ImportError: /usr/local/lib/libgnuradio-spektrumcsi.so.1.0.0: undefined symbol: _ZN2gr6filter6kernel14fft_filter_cccC1EiRKSt6vectorISt7complexIfESaIS5_EEi

How can i attach fft_filter_ccc to my project?
In my ...impl.cc file exists:

#include <gnuradio/filter/firdes.h>
#include <gnuradio/filter/pfb_arb_resampler.h>
#include <gnuradio/io_signature.h>
#include <gnuradio/math.h>
#include <volk/volk.h>

and in impl.h i have

#include <gnuradio/filter/fft_filter.h>

Thank You in advance!
Niko


reply via email to

[Prev in Thread] Current Thread [Next in Thread]