Skip to content

Commit

Permalink
disable new EH on win-arm64 (#102052)
Browse files Browse the repository at this point in the history
  • Loading branch information
mangod9 committed May 9, 2024
1 parent 6cc6c66 commit acd3175
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/coreclr/inc/clrconfigvalues.h
Original file line number Diff line number Diff line change
Expand Up @@ -259,8 +259,12 @@ RETAIL_CONFIG_DWORD_INFO(UNSUPPORTED_legacyCorruptedStateExceptionsPolicy, W("le
CONFIG_DWORD_INFO(INTERNAL_SuppressLostExceptionTypeAssert, W("SuppressLostExceptionTypeAssert"), 0, "")
RETAIL_CONFIG_DWORD_INFO(INTERNAL_UseEntryPointFilter, W("UseEntryPointFilter"), 0, "")
RETAIL_CONFIG_DWORD_INFO(INTERNAL_Corhost_Swallow_Uncaught_Exceptions, W("Corhost_Swallow_Uncaught_Exceptions"), 0, "")
#if defined(HOST_WINDOWS) && defined(TARGET_ARM64)
// disable new exception handling for Windows ARM64
RETAIL_CONFIG_DWORD_INFO(EXTERNAL_LegacyExceptionHandling, W("LegacyExceptionHandling"), 1, "Enable legacy exception handling.");
#else
RETAIL_CONFIG_DWORD_INFO(EXTERNAL_LegacyExceptionHandling, W("LegacyExceptionHandling"), 0, "Enable legacy exception handling.");

#endif // defined(WINDOWS) && defined(TARGET_ARM64)

///
/// Garbage collector
Expand Down

0 comments on commit acd3175

Please sign in to comment.