You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description:
I encountered a linker error while building the project with esp32c5 target. The error message indicates that the linker cannot find the -lbtdm_app library. This issue arises in the CMakeList.txt(connectedhomeip/connectedhomeip/config/esp32/components/chip)
Steps to Reproduce:
Ensure that the CONFIG_BT_ENABLED option is enabled in the project configuration.
Attempt to build the project using the command with esp32c5: idf.py build.
Observe the linker error stating: cannot find -lbtdm_app.
Solution:
In the CMakeList.txt(connectedhomeip/connectedhomeip/config/esp32/components/chip) file, at line 434 add (target_name STREQUAL "esp32c5")
The text was updated successfully, but these errors were encountered:
github-actionsbot
changed the title
Linker Error: Cannot Find -lbtdm_app With ESP32C5
Linker Error: Cannot Find -lbtdm_app With ESP32C5 (CON-1483)
Dec 19, 2024
Description:
I encountered a linker error while building the project with esp32c5 target. The error message indicates that the linker cannot find the -lbtdm_app library. This issue arises in the CMakeList.txt(connectedhomeip/connectedhomeip/config/esp32/components/chip)
Steps to Reproduce:
Solution:
In the CMakeList.txt(connectedhomeip/connectedhomeip/config/esp32/components/chip) file, at line 434 add (target_name STREQUAL "esp32c5")
The text was updated successfully, but these errors were encountered: