Skip to content

Commit

Permalink
Update CMakeLists.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
lmangani authored Dec 12, 2024
1 parent 9bc65da commit 1971612
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,13 @@ set(STATIC_LIBS

if(VCPKG_TARGET_TRIPLET MATCHES "arm64-linux" OR SYSTEM_ARCH MATCHES ".*(arm64|aarch64).*")
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})
endif()
endif()

# For static extension, use static library with correct link order
Expand All @@ -98,7 +105,6 @@ target_link_libraries(${LOADABLE_EXTENSION_NAME}

# Set link flags to ensure proper symbol resolution
if(VCPKG_TARGET_TRIPLET MATCHES "arm64-linux" OR SYSTEM_ARCH MATCHES ".*(arm64|aarch64).*")
list(APPEND STATIC_LIBS "atomic")
set_target_properties(${EXTENSION_NAME} PROPERTIES
LINK_FLAGS "-Wl,--no-as-needed -Wl,-z,now -Wl,--export-dynamic -latomic"
)
Expand Down

0 comments on commit 1971612

Please sign in to comment.