I am trying to run a software that ran flawlessly before upgrading from Ubuntu 20.04 to 22.04, but now I receive the error
symbol lookup error: /Softwares/presto/lib/libpresto.so: undefined symbol: __pow_finite
On another stack page it suggests to
nm -gD libpresto.so | grep __pow_finite
U __pow_finite
On this other post it says it might be a CLANG bug. I quickly checked, and it doesn't seem to show a .comment file or a similar log file where such info are reported. How do I know by which CLANG version I have compiled the software? If it is a < 10 version should I reinstall CLANG first and then re-make?