From c9439f0509f13dc4b6460b8e758b872f4f7a465b Mon Sep 17 00:00:00 2001 From: Henry Li Date: Tue, 11 Nov 2025 16:47:50 -0800 Subject: [PATCH] do not use boost static libs for AzureLinux --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 81475a2..a6e1a54 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -29,7 +29,7 @@ endif() if(CMAKE_SYSTEM_NAME STREQUAL "Linux") file(READ "/etc/os-release" OS_RELEASE_CONTENT) # Skip static libs on Fedora - https://github.com/NVIDIA/nvbandwidth/issues/4 - if(NOT OS_RELEASE_CONTENT MATCHES "ID=.*fedora") + if(NOT OS_RELEASE_CONTENT MATCHES "ID=.*fedora|azurelinux") set(Boost_USE_STATIC_LIBS ON) endif() else()