Adjust compiler flags for modern gcc

The gcc compiler has unused value warnings enabled by default, so add
-Wno-unused-value flag to reduce noise in the compiler output.

Signed-off-by: Claudio Matsuoka <cmatsuoka@gmail.com>
This commit is contained in:
Claudio Matsuoka 2015-05-10 16:28:24 -03:00
parent 8e06d0b41b
commit 95e3dc5430

View File

@ -20,7 +20,7 @@ SHELL = /bin/sh
# The C compiler and linker to use # The C compiler and linker to use
CC = gcc CC = gcc
CFLAGS = -g -O2 -Wall CFLAGS = -g -O2 -Wall -Wno-unused-value
LD = gcc LD = gcc
LDFLAGS = LDFLAGS =