Skip to content

Commit

Permalink
Merge pull request #650 from lukemartinlogan/dev
Browse files Browse the repository at this point in the history
libaio
  • Loading branch information
lukemartinlogan authored Dec 26, 2023
2 parents cb27858 + c51cee9 commit 9603b15
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -114,13 +114,13 @@ if(PkgConfig)
endif()

# LIBAIO
find_library(LIBAIO_LIBRARY NAMES aio)
if(LIBAIO_LIBRARY)
message(STATUS "found libaio at ${LIBAIO_LIBRARY}")
else()
set(LIBAIO_LIBRARY aio)
message(STATUS "Assuming it was installed with our aio spack")
endif()
#find_library(LIBAIO_LIBRARY NAMES aio)
#if(LIBAIO_LIBRARY)
# message(STATUS "found libaio at ${LIBAIO_LIBRARY}")
#else()
# set(LIBAIO_LIBRARY aio)
# message(STATUS "Assuming it was installed with our aio spack")
#endif()

# Zeromq
#pkg_check_modules(ZMQ REQUIRED libzmq)
Expand Down
2 changes: 1 addition & 1 deletion tasks/posix_bdev/src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
add_library(posix_bdev SHARED
posix_bdev.cc)
add_dependencies(posix_bdev ${Hermes_RUNTIME_DEPS})
target_link_libraries(posix_bdev ${Hermes_RUNTIME_LIBRARIES} ${LIBAIO_LIBRARY})
target_link_libraries(posix_bdev ${Hermes_RUNTIME_LIBRARIES})

#------------------------------------------------------------------------------
# Install Small Message Task Library
Expand Down

0 comments on commit 9603b15

Please sign in to comment.