We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59e3aff commit 9cf3d7aCopy full SHA for 9cf3d7a
tests/host/Makefile
@@ -3,8 +3,11 @@ BINARY_DIRECTORY := bin
3
OUTPUT_BINARY := $(BINARY_DIRECTORY)/host_tests
4
CORE_PATH := ../../cores/esp8266
5
6
+# I wasn't able to build with clang when -coverage flag is enabled, forcing GCC on OS X
7
+ifeq ($(UNAME_S),Darwin)
8
CC := gcc
9
CXX := g++
10
+endif
11
12
CORE_CPP_FILES := $(addprefix $(CORE_PATH)/,\
13
StreamString.cpp \
0 commit comments