We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc17936 commit 93c9bf5Copy full SHA for 93c9bf5
contrib/arrow-cmake/CMakeLists.txt
@@ -254,7 +254,6 @@ set(ARROW_SRCS
254
"${LIBRARY_DIR}/device.cc"
255
"${LIBRARY_DIR}/extension_type.cc"
256
"${LIBRARY_DIR}/memory_pool.cc"
257
- "${LIBRARY_DIR}/memory_pool_jemalloc.cc"
258
"${LIBRARY_DIR}/pretty_print.cc"
259
"${LIBRARY_DIR}/record_batch.cc"
260
"${LIBRARY_DIR}/result.cc"
@@ -423,6 +422,10 @@ set(ARROW_SRCS
423
422
"${ARROW_SRC_DIR}/arrow/adapters/orc/options.cc"
424
)
425
+if (OS_LINUX)
426
+ SET(ARROW_SRCS "${LIBRARY_DIR}/memory_pool_jemalloc.cc" ${ARROW_SRCS})
427
+elseif()
428
+
429
add_definitions(-DARROW_WITH_LZ4)
430
SET(ARROW_SRCS "${LIBRARY_DIR}/util/compression_lz4.cc" ${ARROW_SRCS})
431
0 commit comments