From 4d69b971499bf483842fd6190fe77fdce2001685 Mon Sep 17 00:00:00 2001 From: Abdelrahman Said Date: Sun, 20 Apr 2025 20:20:39 +0100 Subject: [PATCH] Add /std:c11 to Windows build --- build.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.ps1 b/build.ps1 index 1b128ce..2ccaa64 100644 --- a/build.ps1 +++ b/build.ps1 @@ -4,7 +4,7 @@ Param( $Compiler = "cl.exe" -$GeneralFlags = "/Wall /WX /wd4996 /wd4464" +$GeneralFlags = "/Wall /WX /wd4996 /wd4464 /wd5105 /std:c11" $LibraryFlags = "/LD" $Kernel = (Get-ChildItem Env:OS).Value