Skip to content

Commit

Permalink
Merge branch 'bugfix/fix_coex_lib_circular_dependency_v5.1' into 'rel…
Browse files Browse the repository at this point in the history
…ease/v5.1'

fix(esp_coex): fix circular dependency issue on esp32 (v5.1)

See merge request espressif/esp-idf!29156
  • Loading branch information
jack0c committed Feb 27, 2024
2 parents f9db462 + 905a0d3 commit cfc893f
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions components/esp_coex/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@ if(CONFIG_ESP_COEX_SW_COEXIST_ENABLE OR CONFIG_ESP_COEX_EXTERNAL_COEXIST_ENABLE)
add_prebuilt_library(${blob} "${CMAKE_CURRENT_SOURCE_DIR}/lib/${target_name}/lib${blob}.a"
REQUIRES ${COMPONENT_NAME})
target_link_libraries(${COMPONENT_LIB} PUBLIC ${blob})
if(CONFIG_IDF_TARGET_ESP32)
target_link_libraries(${COMPONENT_LIB} PRIVATE btdm_app)
endif()
endif()

target_compile_options(${COMPONENT_LIB} PRIVATE "-Wno-format")
Expand Down

0 comments on commit cfc893f

Please sign in to comment.