[ctrtool/makerom] Silenced warnings, fixed compiling on systems with libiconv installed.

This commit is contained in:
jakcron
2015-11-26 19:53:19 +08:00
parent 2f81642a69
commit b17804b685
4 changed files with 6 additions and 2 deletions
+1 -1
View File
@@ -5,7 +5,7 @@ OBJS = $(foreach dir,$(SRC_DIR),$(subst .c,.o,$(wildcard $(dir)/*.c)))
# Compiler Settings
LIBS = -static-libgcc
CXXFLAGS = -I.
CFLAGS = --std=c99 -O2 -flto -Wall -Wno-unused-but-set-variable -Wno-unused-value -I. $(MAKEROM_BUILD_FLAGS)
CFLAGS = --std=c99 -O2 -flto -Wall -Wno-unused-but-set-variable -Wno-unused-value -Wno-unused-result -I. $(MAKEROM_BUILD_FLAGS)
CC = gcc
CXX = g++