As I said in the beginning, I am no C++ expert, I don't know how to configure this... but if anyone can help... I'll be happy to merge the change into OXCE+ repo(s).
As Yankes mentioned, it depends on how you compile it. Producing stack traces in C++ is a very difficult platform-specific affair and I
worked really hard to get it to work. If you use GCC/Clang with debug info, or Visual Studio with PDB, then the executable can generate stack traces. Other platforms like Android would require their own code.
Sadly, most people use the nightly builds which are compiled with MinGW, which can't produce stack traces due to Windows/Linux debug format differences. The only solutions involve bulky third-party libraries that I didn't wanna deal with.