From ce1043c55dd8b1136f945ecb49eb7079b4295b5b Mon Sep 17 00:00:00 2001 From: Steffen Jaeckel Date: Sat, 18 Feb 2017 14:39:32 +0100 Subject: [PATCH] ignore warnings of clang created by my stdlib --- makefile.include | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/makefile.include b/makefile.include index bcbdb7f..4a3dac4 100644 --- a/makefile.include +++ b/makefile.include @@ -66,6 +66,11 @@ endif # COMPILE_SMALL endif # COMPILE_DEBUG +ifneq ($(findstring clang,$(CC)),) +CFLAGS += -Wno-typedef-redefinition -Wno-tautological-compare +endif + + HASH=hashsum CRYPT=encrypt SMALL=small