10000 Make compile warnings an error on ESP8266 · Adam5Wu/bearssl-esp8266@c9e639f · GitHub
[go: up one dir, main page]

Skip to content

Commit c9e639f

Browse files
Make compile warnings an error on ESP8266
1 parent 6ae50f6 commit c9e639f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

conf/esp8266.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ BUILD = esp8266
1111
# TODO - when GCC jump tables are moved to inline, remove the -fno-jump-tables. This setting saves ~1.3KB RAM at the cose of 1.3KB of flash, but is slower by a bit
1212
TOOLCHAIN_PREFIX := xtensa-lx106-elf-
1313
CC := $(TOOLCHAIN_PREFIX)gcc
14-
CFLAGS = -W -Wall -g -O2 -Wpointer-arith -Wl,-EL -nostdlib -mlongcalls -mno-text-section-literals -ffunction-sections -fdata-sections -fno-jump-tables
14+
CFLAGS = -W -Wall -g -O2 -Wpointer-arith -Wl,-EL -nostdlib -mlongcalls -mno-text-section-literals -ffunction-sections -fdata-sections -fno-jump-tables -Werror
1515
CFLAGS += -D__ets__ -DICACHE_FLASH -DESP8266
1616
LD := $(TOOLCHAIN_PREFIX)ld
1717
AR := $(TOOLCHAIN_PREFIX)ar

0 commit comments

Comments
 (0)
0