We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2e7f87e + de32761 commit bbde375Copy full SHA for bbde375
components/esp8266/CMakeLists.txt
@@ -69,7 +69,12 @@ else()
69
target_link_libraries(${COMPONENT_LIB} PUBLIC "-L ${CMAKE_CURRENT_SOURCE_DIR}/lib" "-lstdc++")
70
target_compile_definitions(${COMPONENT_LIB} PUBLIC -DUSING_IBUS_FASTER_GET)
71
if(NOT CONFIG_NO_BLOBS)
72
- set(blobs "gcc" "hal" "core" "net80211" "phy" "rtc" "clk" "pp" "smartconfig" "ssc" "espnow")
+ set(blobs "gcc" "hal" "phy" "rtc" "clk" "smartconfig" "ssc")
73
+ if(CONFIG_ESP8266_WIFI_DEBUG_LOG_ENABLE)
74
+ list(APPEND blobs "core_dbg" "net80211_dbg" "pp_dbg" "espnow_dbg")
75
+ else()
76
+ list(APPEND blobs "core" "net80211" "pp" "espnow")
77
+ endif()
78
foreach(blob ${blobs})
79
add_library(${blob} STATIC IMPORTED)
80
set_property(TARGET ${blob} PROPERTY IMPORTED_LOCATION ${CMAKE_CURRENT_SOURCE_DIR}/lib/lib${blob}.a)
0 commit comments