From 825652f3e1cdec5fec0ab11fd3b6f93b6a7509ca Mon Sep 17 00:00:00 2001 From: Angus Gratton Date: Thu, 5 Nov 2020 14:21:08 +1100 Subject: [PATCH] test_compile_fuzzers: Fix include paths for host build Regression in 988be6946681b592e3e51bb652b91bce54d7ba34, need to add esp_hw_support component include dir here. * Original commit: espressif/esp-idf@98a0cc783f701b238bea232b53250a538d34920a --- components/mdns/test_afl_fuzz_host/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/components/mdns/test_afl_fuzz_host/Makefile b/components/mdns/test_afl_fuzz_host/Makefile index f73d3fcbd..7f84a6f86 100644 --- a/components/mdns/test_afl_fuzz_host/Makefile +++ b/components/mdns/test_afl_fuzz_host/Makefile @@ -10,6 +10,7 @@ CFLAGS=-g -Wno-unused-value -Wno-missing-declarations -Wno-pointer-bool-conversi -I$(COMPONENTS_DIR)/esp_common/include \ -I$(COMPONENTS_DIR)/esp_event/include \ -I$(COMPONENTS_DIR)/esp_eth/include \ + -I$(COMPONENTS_DIR)/esp_hw_support/include \ -I$(COMPONENTS_DIR)/esp_netif/include \ -I$(COMPONENTS_DIR)/esp_netif/private_include \ -I$(COMPONENTS_DIR)/esp_netif/lwip \