added GCC 4.9 handling to build/flags_gcc.mak now it has been released (nw)

This commit is contained in:
Oliver Stöneberg 2014-05-07 10:41:39 +00:00
parent ef5fa52474
commit 71282cd78d

View File

@ -11,6 +11,10 @@ ifeq ($(findstring 4.8.,$(TEST_GCC)),4.8.)
CCOMFLAGS += -Wno-unused-variable -Wno-array-bounds -Wno-strict-overflow CCOMFLAGS += -Wno-unused-variable -Wno-array-bounds -Wno-strict-overflow
endif endif
ifeq ($(findstring 4.9.,$(TEST_GCC)),4.9.)
CCOMFLAGS += -Wno-narrowing -Wno-attributes -Wno-unused-local-typedefs
endif
ifeq ($(findstring arm,$(UNAME)),arm) ifeq ($(findstring arm,$(UNAME)),arm)
CCOMFLAGS += -Wno-cast-align CCOMFLAGS += -Wno-cast-align
endif endif