Stack unwinding

Back

Stack unwinding is part of exception handling in C++

void *__gxx_personality_v0; is a symbol used for stack unwinding.

If you run into a problem with that this symbol not present, you would need to add it via the LDFLAGS -lstdc++

Reference