Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(userspace/libsinsp): only link libanl if present. #2036

Merged
merged 1 commit into from
Sep 5, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions userspace/libsinsp/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -258,8 +258,14 @@ if(NOT WIN32)
)

if(NOT MUSL_OPTIMIZED_BUILD)
target_link_libraries(sinsp INTERFACE rt anl)
list(APPEND SINSP_PKGCONFIG_LIBRARIES rt anl)
find_library(LIB_ANL anl)
if(LIB_ANL)
target_link_libraries(sinsp INTERFACE rt anl)
list(APPEND SINSP_PKGCONFIG_LIBRARIES rt anl)
else()
target_link_libraries(sinsp INTERFACE rt)
list(APPEND SINSP_PKGCONFIG_LIBRARIES rt)
endif()
endif()

else()
Expand Down
Loading