The debug-tests was changing the compilation (TINY_MQTT_DEBUG on) Thus the other tests were too long to execute due to Serial output emulation.
14 lines
560 B
Makefile
14 lines
560 B
Makefile
# See https://github.com/bxparks/EpoxyDuino for documentation about this
|
|
# Makefile to compile and run Arduino programs natively on Linux or MacOS.
|
|
|
|
EXTRA_CXXFLAGS=-g3 -O0 -DTINY_MQTT_DEBUG
|
|
|
|
# Remove flto flag from EpoxyDuino (too many <optimized out>)
|
|
CXXFLAGS = -Wextra -Wall -std=gnu++11 -fno-exceptions -fno-threadsafe-statics
|
|
|
|
APP_NAME := debug-tests
|
|
ARDUINO_LIBS := AUnit AceCommon AceTime TinyMqtt EspMock ESP8266WiFi ESPAsyncTCP
|
|
ARDUINO_LIB_DIRS := ../../../EspMock/libraries
|
|
EPOXY_CORE := EPOXY_CORE_ESP8266
|
|
include ../../../EpoxyDuino/EpoxyDuino.mk
|