From 3abfeb2e0008d284ec93463c3ec80d095d0b9e53 Mon Sep 17 00:00:00 2001 From: Christopher Wellons Date: Mon, 18 May 2020 22:35:29 +0000 Subject: [PATCH] Add -Wno-missing-field-initializers to CFLAGS This is warning is annoying and is making too much noise. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 1aa1b07..927b3f4 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ .POSIX: .SUFFIXES: CC = cc -CFLAGS = -ansi -pedantic -Wall -Wextra -O3 -g3 +CFLAGS = -ansi -pedantic -Wall -Wextra -Wno-missing-field-initializers -O3 -g PREFIX = /usr/local sources = src/enchive.c src/chacha.c src/curve25519-donna.c src/sha256.c