From cbe6789a9339c66288cf573e172c9b7d9cf17d61 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=91=D1=80=D0=B0=D0=BD=D0=B8=D0=BC=D0=B8=D1=80=20=D0=9A?= =?UTF-8?q?=D0=B0=D1=80=D0=B0=D1=9F=D0=B8=D1=9B?= Date: Sat, 23 Aug 2025 19:29:43 -0700 Subject: [PATCH] Setup exception handler in examples. --- examples/common/entry/entry.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/examples/common/entry/entry.cpp b/examples/common/entry/entry.cpp index 84bc7ce52..c8da04011 100644 --- a/examples/common/entry/entry.cpp +++ b/examples/common/entry/entry.cpp @@ -595,6 +595,7 @@ BX_PRAGMA_DIAGNOSTIC_POP(); int main(int _argc, const char* const* _argv) { //DBG(BX_COMPILER_NAME " / " BX_CPU_NAME " / " BX_ARCH_NAME " / " BX_PLATFORM_NAME); + bx::installExceptionHandler(); s_fileReader = BX_NEW(g_allocator, FileReader); s_fileWriter = BX_NEW(g_allocator, FileWriter);