8000 Signed updates by madpilot · Pull Request #3105 · esp8266/Arduino · GitHub
[go: up one dir, main page]

Skip to content

Signed updates #3105

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 15 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Adding SDK path to test include path
  • Loading branch information
madpilot committed Apr 5, 2017
commit b819b6cac5a07b8a2d3ace69415f6f3bf6138adc
2 changes: 2 additions & 0 deletions tests/host/Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
BINARY_DIRECTORY := bin
OUTPUT_BINARY := $(BINARY_DIRECTORY)/host_tests
CORE_PATH := ../../cores/esp8266
SDK_PATH := ../../tools/sdk/include

# I wasn't able to build with clang when -coverage flag is enabled, forcing GCC on OS X
ifeq ($(shell uname -s),Darwin)
Expand Down Expand Up @@ -43,6 +44,7 @@ MOCK_C_FILES := $(addprefix common/,\
INC_PATHS += $(addprefix -I, \
common \
$(CORE_PATH) \
$(SDK_PATH) \
)

TEST_CPP_FILES := \
Expand Down
0