From 83a85714d35b512b458d8daa9ccc0af9c2243ba0 Mon Sep 17 00:00:00 2001 From: Alexander Torstling Date: Sun, 27 Apr 2025 19:16:50 +0200 Subject: [PATCH] more msys compiler warning flags --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index fd6900a..c72abf7 100644 --- a/Makefile +++ b/Makefile @@ -21,7 +21,7 @@ ifeq ($(PLATFORM), linux) CFLAGS=-std=c11 -Werror -Wno-format-nonliteral -Weverything -Wno-declaration-after-statement -Wno-unsafe-buffer-usage -Wwrite-strings -D_GNU_SOURCE -D_POSIX_C_SOURCE=200809L -D_XOPEN_SOURCE=700 else ifeq ($(PLATFORM), msys) CC=gcc - CFLAGS=-std=gnu11 -Werror -Wno-format-nonliteral -Wwrite-strings + CFLAGS=-std=gnu11 -Werror -Wno-format-nonliteral -Wwrite-strings -Wall -Wextra -Wshadow -Wpedantic -Wno-unknown-pragmas else #Including Darwin CC=clang