add flag -Wno-error=implicit-function-declaration

This commit is contained in:
danyaberezun 2024-02-07 11:09:09 +01:00 committed by Roman Venediktov
parent 43f5760a7e
commit 87339c7b73

View file

@ -1,5 +1,5 @@
CC=clang
COMMON_FLAGS=-g2 -std=gnu99 -fstack-protector-all -Wimplicit-function-declaration
COMMON_FLAGS=-g2 -std=gnu99 -fstack-protector-all -Wno-error=implicit-function-declaration
PROD_FLAGS=$(COMMON_FLAGS) -DLAMA_ENV
TEST_FLAGS=$(COMMON_FLAGS) -DDEBUG_VERSION
UNIT_TESTS_FLAGS=$(TEST_FLAGS)