Closed edmendezcr closed 1 year ago
No, I have not seen this. We do a Linux build on ubuntu 22.04 (Github Action). This version uses gcc version 11while you using the gcc version 9. The library is fairly new so it's most likely some missing std::variant/std::vector function.
If you can't update the compiler, there might be a C++20/C++17 issue. GCC 9 support C++17 and not C++20.
Unfortunately, It's hard to regenerate your environment
If it's possible, try to replace in ichannelconversion.cpp on line 318, the emplace_back(..) with a push_back(..) and check if at least that error disapear.
Thanks! Yes, the issue was the version of GCC. It worked after using GCC 11.
Hi there,
I'm not able to build the library for Ubuntu 20.04 x86_64 so I wonder if you have seen the same problem. Seems like the issue is
template argument deduction/substitution failed
: