Re: rtabmap and alicevision, how to build and use?

Posted by Mikor on
URL: http://official-rtab-map-forum.206.s1.nabble.com/rtabmap-and-alicevision-how-to-build-and-use-tp9032p9036.html

The actual error was not at the lines before it was raised as AliceVision package was built with multiple jobs (make -j N). So, when I used make -j 1 I had an error similar to this . The solution came after following the first comment that said that I have to update the gcc&g++ to a higher version:
sudo apt install gcc-10 g++-10
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-10 100 --slave /usr/bin/g++ g++ /usr/bin/g++-10 --slave /usr/bin/gcov gcov /usr/bin/gcov-10