Skip to content

Commit

Permalink
cmake: Don't check for stdatomic.h for NuttX platform
Browse files Browse the repository at this point in the history
There is no need to use cmake include detection under NuttX platform.

Signed-off-by: xuxin19 <xuxin19@xiaomi.com>
  • Loading branch information
xuxin930 authored and arnopo committed Oct 21, 2024
1 parent 142c403 commit 1112f2c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmake/depends.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ if ("${CMAKE_SYSTEM_NAME}" STREQUAL "Linux")
find_package(LibRt REQUIRED)
collect (PROJECT_LIB_DEPS "${LIBRT_LIBRARIES}")

else ("${CMAKE_SYSTEM_NAME}" STREQUAL "Linux")
elseif (NOT "${CMAKE_SYSTEM_NAME}" STREQUAL "NuttX")

# TODO: fix for find_path() to detect stdatomic.h
# find_path (HAVE_STDATOMIC_H stdatomic.h)
Expand All @@ -33,5 +33,5 @@ else ("${CMAKE_SYSTEM_NAME}" STREQUAL "Linux")
check_include_files (stdatomic.h HAVE_STDATOMIC_H)
set (CMAKE_REQUIRED_FLAGS ${_saved_cmake_required_flags})

endif ("${CMAKE_SYSTEM_NAME}" STREQUAL "Linux")
endif ()

0 comments on commit 1112f2c

Please sign in to comment.