jenkins linking fix

This commit is contained in:
Sebastien
2020-04-20 12:11:13 -04:00
parent db90f29513
commit 34e7b6741f
2 changed files with 6 additions and 0 deletions

View File

@@ -3,3 +3,8 @@ idf_component_register( SRC_DIRS .
)
add_prebuilt_library(esp_processing lib/libesp_processing.a)
target_link_libraries(${COMPONENT_LIB} PRIVATE esp_processing)
#target_link_libraries(${COMPONENT_LIB} INTERFACE "-Wl,--undefined=")
target_link_libraries(${COMPONENT_LIB} INTERFACE "-u pow")
target_link_libraries(${COMPONENT_LIB} INTERFACE "-u cos")
target_link_libraries(${COMPONENT_LIB} INTERFACE "-u sin")
target_link_libraries(${COMPONENT_LIB} INTERFACE "-u sqrt")