Add Stack to Sanitizers options

This commit is contained in:
Wojtek Figat
2025-08-02 17:36:48 +02:00
parent 5de5d8f683
commit 34ba45cd5a

View File

@@ -56,6 +56,16 @@ namespace Flax.Build.NativeCpp
/// Undefined behavior (UB) detector.
/// </summary>
Undefined = 8,
/// <summary>
/// Thread stack memory checks.
/// </summary>
Stack = 16,
/// <summary>
/// Enables all available sanitizers for full compiler security.
/// </summary>
All = Address | Thread | Memory | Undefined | Stack,
}
/// <summary>