Skip to content

Commit

Permalink
got extraneous un-fixable errors (tried adding another set of {} but …
Browse files Browse the repository at this point in the history
…it didnt help) under win7 + ARM GCC 4.8 2014q1 due to http://stackoverflow.com/questions/11551986/gcc-missing-braces-around-initializer so just removed that warning from makefile config
  • Loading branch information
ladyada committed Dec 13, 2016
1 parent cd638fe commit ddbbb78
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ WFLAGS = \
-Wformat -Wmissing-format-attribute \
-Wno-deprecated-declarations -Wpacked -Wredundant-decls -Wnested-externs \
-Wlong-long -Wunreachable-code -Wcast-align \
-Wno-overflow -Wno-shadow -Wno-attributes -Wno-packed -Wno-pointer-sign -Werror
-Wno-missing-braces -Wno-overflow -Wno-shadow -Wno-attributes -Wno-packed -Wno-pointer-sign -Werror
CFLAGS = $(COMMON_FLAGS) \
-x c -c -pipe -nostdlib \
--param max-inline-insns-single=500 \
Expand Down Expand Up @@ -81,7 +81,7 @@ selflogs:
dirs:
@echo "Building $(BOARD)"
-@mkdir -p $(BUILD_PATH)

$(EXECUTABLE): $(OBJECTS)
$(CC) -L$(BUILD_PATH) $(LDFLAGS) \
-T./asf/sam0/utils/linker_scripts/samd21/gcc/samd21j18a_flash.ld \
Expand Down

0 comments on commit ddbbb78

Please sign in to comment.