Frederik Seiffert
Frederik Seiffert
Have you tried following the steps from the readme [here](https://github.com/gnustep/tools-windows-msvc?tab=readme-ov-file#using-the-toolchain-in-visual-studio)?
Ah I see, thanks for clarifying. I’m not aware of a way to have code completion for ObjC code in VS. We’re using the project with Qt Creator, which somewhat...
Hi @supervacuus, thank you very much for the super detailed and helpful explanation! 🙏 The original reason why I started looking into WER was that we see some users reporting...
Sounds great, thank you @supervacuus! We'd be interested in this on Android and Windows (particularly on Windows as we have more 3rd party C++ code there which might throw exceptions...
If we implemented this on the app side would something like this work? ```cpp std::set_terminate([](){ sentry_value_t stacktrace = sentry_value_new_stacktrace(NULL, 0); std::exception_ptr e = std::current_exception(); const char *message = "Unknown exception";...
Thank you @supervacuus, that’s super helpful feedback. 🙏
This is what I ended up with after adding a catch-all in case this is useful to anyone else. ```cpp std::set_terminate([](){ // try to figure out exception type and possible...
@supervacuus unfortunately we found that using `set_terminate` on the app side doesn’t seem to work on Windows (any more?) – when Sentry is enabled the terminate handler never gets called...
Thank you! We haven’t updated to 0.7.6 yet, but from what I can see in the release notes it seemed unlikely to affect this.
Thank you @supervacuus, this is incredibly helpful. One more somewhat related question: WinRT errors also have a code which we’d like to log as well (in addition to the message...