-
Notifications
You must be signed in to change notification settings - Fork 29.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unhandled Win32 exception - no AeDebug postmortem or UnhandledExceptionFilter callback #27099
Comments
You can try commenting out those lines and rebuilding Node: Lines 177 to 194 in 655c90b
If you are testing your own modules you should have almost everything you need to build Node already available, maybe missing NASM. Check out our bootstraping guide: https://github.com/nodejs/node/tree/master/tools/bootstrap#windows . The build process itself is as simple as checking out the source code and running |
Thanks for pointing that out. It turns out that this issue was already raised and discussed. |
On Windows, node just exits in the event of an unhandled Win32 Exception in an addon, such as an access violation that occurs outside the scope of an SEH block. Postmortem debugging (AeDebug) is not triggered. Similarly, an UnhandledExceptionFilter callback previously registered by the addon is not called. Is there an option to enable AeDebug and/or UnhandledExceptionFilter?
The text was updated successfully, but these errors were encountered: