discuss-gnuradio
[Top][All Lists]
Advanced

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

Re: Unit tests for OOT crashes after adding new block


From: Vasil Velichkov
Subject: Re: Unit tests for OOT crashes after adding new block
Date: Wed, 13 Oct 2021 14:38:51 +0300
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.1.0

Hi Marcin,

On 13/10/2021 13.18, Marcin Puchlik wrote:
> /1: ImportError: /home/ubuntu/gr-howto/build/swig/_howto_swig.so: undefined 
> symbol: _ZN2gr5howto10square2_ff4makeEv/

You can convert/demangle the symbol using the c++filt command

  c++filt _ZN2gr5howto10square2_ff4makeEv
  gr::howto::square2_ff::make()

Make sure that you have implemented square2_ff::make() function and then check 
the .so file for undefined symbols.

  cd /home/ubuntu/gr-howto/build/
  ldd -r ./lib/lib*.so
  objdump -TC ./lib/lib*.so | grep make

You can also attempt a clean rebuild (delete the build directory) or in case 
you have installed a previous version of your OOT module then try uninstalling 
it - run `make uninstall`

Regards,
Vasil



reply via email to

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