1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-07-30 16:24:09 +03:00

Implement strstr_P, add pgmspace tests (#1749)

This commit is contained in:
Ivan Grokhotkov
2016-03-11 09:47:49 +03:00
parent 0a320b9fb5
commit d49024cfdf
4 changed files with 54 additions and 82 deletions

View File

@ -17,6 +17,7 @@ CORE_CPP_FILES := $(addprefix $(CORE_PATH)/,\
Print.cpp \
FS.cpp \
spiffs_api.cpp \
pgmspace.cpp \
)
CORE_C_FILES := $(addprefix $(CORE_PATH)/,\
@ -41,6 +42,7 @@ INC_PATHS += $(addprefix -I, \
TEST_CPP_FILES := \
fs/test_fs.cpp \
core/test_pgmspace.cpp \
CXXFLAGS += -std=c++11 -Wall -coverage -O0
CFLAGS += -std=c99 -Wall -coverage -O0