Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions cpp/src/arrow/io/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,9 @@ add_arrow_test(memory_test PREFIX "arrow-io")

add_arrow_benchmark(file_benchmark PREFIX "arrow-io")

if(NOT (${ARROW_SIMD_LEVEL} STREQUAL "NONE") AND NOT (${ARROW_SIMD_LEVEL} STREQUAL "NEON"
))
if(DEFINED ARROW_SIMD_LEVEL
AND NOT (ARROW_SIMD_LEVEL STREQUAL "NONE")
AND NOT (ARROW_SIMD_LEVEL STREQUAL "NEON"))
# This benchmark either requires SSE4.2 or ARMV8 SIMD to be enabled
add_arrow_benchmark(memory_benchmark PREFIX "arrow-io")
endif()
Expand Down
Loading