Skip to content

Latest commit

 

History

History
14 lines (8 loc) · 569 Bytes

stack-unwinding.md

File metadata and controls

14 lines (8 loc) · 569 Bytes

Stack unwinding

Back{: .button}

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