Skip to content

Commit

Permalink
Try again!
Browse files Browse the repository at this point in the history
  • Loading branch information
lmangani authored Dec 12, 2024
1 parent 9cf7235 commit 694b034
Showing 1 changed file with 10 additions and 11 deletions.
21 changes: 10 additions & 11 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -80,17 +80,16 @@ set(STATIC_LIBS
)

if(VCPKG_TARGET_TRIPLET MATCHES "arm64-linux" OR SYSTEM_ARCH MATCHES ".*(arm64|aarch64).*")
find_package(Atomic_ops CONFIG REQUIRED)
find_library(LIBATOMIC NAMES atomic)
if(Atomic_ops)
message(STATUS "Atomic_ops found")
list(APPEND STATIC_LIBS Atomic_ops::atomic_ops Atomic_ops::atomic_ops_gpl)
elseif(LIBATOMIC)
message(STATUS "libatomic found at ${LIBATOMIC}")
list(APPEND STATIC_LIBS ${LIBATOMIC})
else()
message(FATAL_ERROR "libatomic not found")
endif()
list(APPEND STATIC_LIBS "atomic")
# Use pkg-config to find and link libatomic-ops
find_package(PkgConfig REQUIRED)
pkg_check_modules(ATOMIC_OPS REQUIRED atomic_ops)
if(ATOMIC_OPS_FOUND)
message(STATUS "libatomic-ops found by pkg-config")
include_directories(${ATOMIC_OPS_INCLUDE_DIRS})
link_directories(${ATOMIC_OPS_LIBRARY_DIRS})
list(APPEND STATIC_LIBS ${ATOMIC_OPS_LIBRARIES})
endif()
endif()

# For static extension, use static library with correct link order
Expand Down

0 comments on commit 694b034

Please sign in to comment.