Skip to content

Commit

Permalink
Fix the cmake scripts not detecting poll under WASIX
Browse files Browse the repository at this point in the history
  • Loading branch information
Arshia001 committed Jun 25, 2024
1 parent 805013b commit 01cf7b6
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions CMake/OtherTests.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -132,4 +132,9 @@ if(NOT CMAKE_CROSSCOMPILING)
return 0;
}" HAVE_POLL_FINE)
endif()
else()
# WASIX has a "fine" poll implementation. No need to check.
if(${OS} MATCHES "wasi")
set(HAVE_POLL_FINE "yes")
endif()
endif()

0 comments on commit 01cf7b6

Please sign in to comment.