Merge branch 'master' into develop

This commit is contained in:
hathach
2019-10-09 11:03:55 +07:00
10 changed files with 502 additions and 1 deletions

View File

@@ -80,5 +80,9 @@ CFLAGS += \
ifeq ($(DEBUG), 1)
CFLAGS += -O0 -ggdb -DCFG_TUSB_DEBUG=1
else
ifneq ($(BOARD), spresense)
CFLAGS += -flto -Os
else
CFLAGS += -Os
endif
endif

View File

@@ -3,7 +3,11 @@
#
# libc
LIBS += -lgcc -lc -lm -lnosys
LIBS += -lgcc -lm -lnosys
ifneq ($(BOARD), spresense)
LIBS += -lc
endif
# TinyUSB Stack source
SRC_C += \