Skip to content

Commit

Permalink
Merge branch 'bugfix/linux_target_esp_common_strlcpy' into 'master'
Browse files Browse the repository at this point in the history
fix(linux_target): fix esp_err_to_name failing to compile on linux

See merge request espressif/esp-idf!29285
  • Loading branch information
ESP-Marius committed Mar 6, 2024
2 parents 7b32d26 + 3c9463b commit 501628e
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions components/esp_common/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,12 @@ foreach(req ${optional_reqs})
target_link_libraries(${COMPONENT_LIB} PRIVATE ${req_lib})
endif()
endforeach()

if(${IDF_TARGET} STREQUAL "linux" AND CONFIG_ESP_ERR_TO_NAME_LOOKUP)
find_library(LIB_BSD bsd)
if(LIB_BSD)
target_link_libraries(${COMPONENT_LIB} PRIVATE ${LIB_BSD})
elseif(NOT CMAKE_HOST_SYSTEM_NAME STREQUAL "Darwin")
message(WARNING "Missing LIBBSD library. Install libbsd-dev package and/or check linker directories.")
endif()
endif()

0 comments on commit 501628e

Please sign in to comment.