Skip to content

Commit

Permalink
make: disable stringop truncation warning
Browse files Browse the repository at this point in the history
  • Loading branch information
vsergeev committed Nov 20, 2020
1 parent a527700 commit 415f5b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ COMMIT_ID := $(shell git describe --abbrev --always --tags --dirty 2>/dev/null |
OPT ?= -O3
CFLAGS += -std=gnu99 -pedantic
CFLAGS += $(OPT)
CFLAGS += -Wall -Wextra -Wno-unused-parameter $(DEBUG) -fPIC
CFLAGS += -Wall -Wextra -Wno-unused-parameter -Wno-stringop-truncation $(DEBUG) -fPIC
CFLAGS += -DPERIPHERY_VERSION_COMMIT=\"$(COMMIT_ID)\" -DPERIPHERY_GPIO_CDEV_SUPPORT=$(GPIO_CDEV_SUPPORT)
LDFLAGS +=

Expand Down

0 comments on commit 415f5b4

Please sign in to comment.