diff --git a/backend/coreapp/flags.py b/backend/coreapp/flags.py index dbcfebd8..8df053a9 100644 --- a/backend/coreapp/flags.py +++ b/backend/coreapp/flags.py @@ -282,6 +282,7 @@ def to_json(self) -> Dict[str, Union[str, List[str]]]: Checkbox("msvc_use_rtti", "/GR"), Checkbox("msvc_use_ehsc", "/GX"), Checkbox("msvc_disable_stack_checking", "/Gs"), + Checkbox("msvc_disable_buffer_security_checks", "/GS-"), Checkbox("msvc_runtime_debug_checks", "/GZ"), Checkbox("msvc_cdecl", "/Gd"), Checkbox("msvc_fastcall", "/Gr"), diff --git a/frontend/src/lib/i18n/locales/en/compilers.json b/frontend/src/lib/i18n/locales/en/compilers.json index 16d5c82a..1b4d5c8f 100644 --- a/frontend/src/lib/i18n/locales/en/compilers.json +++ b/frontend/src/lib/i18n/locales/en/compilers.json @@ -367,6 +367,7 @@ "msvc_use_rtti": "enable C++ RTTI", "msvc_use_ehsc": "enable C++ EH", "msvc_disable_stack_checking": "disable stack checking calls", + "msvc_disable_buffer_security_checks": "disable buffer security checks", "msvc_runtime_debug_checks": "enable runtime debug checks", "msvc_cdecl": "__cdecl calling convention", "msvc_fastcall": "__fastcall calling convention",