Commit 0ca113d4 authored by Lucas Russo's avatar Lucas Russo

examples/Makefile: suppress missing field initializer warnings

This is nedded as some older compiler versions (e.g., GCC <= 4.6.3)
complain about the way we initialize empty structures.
parent 26a014ba
......@@ -30,7 +30,9 @@ endif
CFLAGS_DEBUG += -g
# Specific platform Flags
CFLAGS_PLATFORM = -Wall -Wextra -Werror
CFLAGS_PLATFORM = -Wall -Wextra -Werror \
-Wno-missing-field-initializers \
-Wno-missing-braces
LDFLAGS_PLATFORM =
# Libraries
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment