From f621326c24791be14aa61221f7e35530378b84d8 Mon Sep 17 00:00:00 2001 From: Pieter Wuille Date: Wed, 9 May 2012 03:48:14 +0200 Subject: Clean up warnings * Use -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameters * Remove xCXXFLAGS usage in makefile.unix * Fix several recent and older sign-compare warnings --- src/makefile.mingw | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/makefile.mingw') diff --git a/src/makefile.mingw b/src/makefile.mingw index 917eb12fcf..bb6466954f 100644 --- a/src/makefile.mingw +++ b/src/makefile.mingw @@ -25,7 +25,7 @@ LIBS= \ DEFS=-DWIN32 -D_WINDOWS -DBOOST_THREAD_USE_LIB DEBUGFLAGS=-g -CFLAGS=-mthreads -O2 -w -Wno-invalid-offsetof -Wformat $(DEBUGFLAGS) $(DEFS) $(INCLUDEPATHS) +CFLAGS=-mthreads -O2 -w -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter $(DEBUGFLAGS) $(DEFS) $(INCLUDEPATHS) TESTDEFS = -DTEST_DATA_DIR=$(abspath test/data) -- cgit v1.2.3