From 3bb5a1bb636ad902aa5bffd3f530a94575acace8 Mon Sep 17 00:00:00 2001 From: "John L. Singleton" Date: Wed, 1 Mar 2023 11:41:02 -0500 Subject: [PATCH] C should be C11 --- scripts/matrix_testing/Config.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/matrix_testing/Config.ps1 b/scripts/matrix_testing/Config.ps1 index a0ac180c23..05aad5dd61 100644 --- a/scripts/matrix_testing/Config.ps1 +++ b/scripts/matrix_testing/Config.ps1 @@ -21,8 +21,8 @@ $COMPILER_ARGS = @{ }; "c" = @{ - "gcc" = "-fsyntax-only"; - "clang" = "-fsyntax-only"; + "gcc" = "-fsyntax-only -std=c11"; + "clang" = "-fsyntax-only -std=c11"; }; }