From 442b60f821e3a275d196a35d7d30cadb909f6d21 Mon Sep 17 00:00:00 2001 From: Petr Baudis Date: Tue, 4 May 2010 09:54:30 +0200 Subject: [PATCH] Makefile: Enable -Wsign-compare; signedness consistency is important for performance --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index bfc5688..a8bc700 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ PREFIX=/usr/local BINDIR=$(PREFIX)/bin # -ffast-math breaks us -CUSTOM_CFLAGS=-Wall -ggdb3 -O3 -march=native -std=gnu99 -frename-registers -pthread +CUSTOM_CFLAGS=-Wall -ggdb3 -O3 -march=native -std=gnu99 -frename-registers -pthread -Wsign-compare SYS_CFLAGS= LDFLAGS=-lm -pthread -lrt -- 2.11.4.GIT