Add -std=c99 to example CFLAGS
[buildfarm-client.git] / build-farm.conf.template
index 9aed6b642eba02ffb7264242e798e2a7aba5417e..d2e429204d98d99f18c698107ecd36ee9e7bef70 100644 (file)
@@ -169,7 +169,8 @@ our %conf =(
     # LDFLAGS => '-Wall'  will create  LDFLAGS+='-Wall'
     makefile_add =>{
         # Show all warnings and errors
-        CFLAGS => '-Wall -Wno-parentheses -Werror=format-security',
+       # Some platforms need the c99 setting enabled
+        CFLAGS => '-std=c99 -Wall -Wno-parentheses -Werror=format-security',
         # Or enable debugging flags
         #CFLAGS => '-g -Wall',
         #LFLAGS => '-g',
@@ -221,8 +222,11 @@ our %conf =(
     ],
 
     # Configuration tuning for test suite ./configure
-    test_configure_env =>{},
-    test_configure_args =>[],
+    test_configure_env => {},
+    test_configure_args => [],
+    # Configuration tuning for test suite run
+    # eg. test_run_args = '-FLAVOUR openssl_1_1_1',
+    test_run_args => '',       
 );
 
 if ($branch eq 'global')