From c37cd3852f68c90a6ce6f455cc723463c1144cf7 Mon Sep 17 00:00:00 2001 From: bjorn Date: Fri, 29 Mar 2024 18:04:42 -0700 Subject: [PATCH] tup: add -Wno-strict-prototypes for now; glslang and ODE are the troublemakers. I updated glslang but I'm too lazy to update ODE, so I'm just gonna wait until we switch to jolt. --- Tupfile.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tupfile.lua b/Tupfile.lua index 138bd054..c25b4653 100644 --- a/Tupfile.lua +++ b/Tupfile.lua @@ -97,7 +97,7 @@ flags = { cflags = { '-std=c11 -pedantic', - '-Wall -Wextra -Wno-unused-parameter', + '-Wall -Wextra -Wno-unused-parameter -Wno-strict-prototypes', config.strict and '-Werror' or '', config.optimize and '-fdata-sections -ffunction-sections' or '', '-fdiagnostics-color=always',