Dependency Issues building in Ubuntu

IIRC on Raspberry Pi i had such linker errors while building with gcc.
Perhaps it is something like that.
Note that on Ubuntu it is supposed to compile fine.

You can try to build with clang:

make CXX=clang++

Or explicitly add the atomic library:

make LDFLAGS=-latomic

2 Likes