Closed yingsu00 closed 1 year ago
Complete cmake log
Yings-MacBook-Pro:velox yingsu$ cmake -DCMAKE_BUILD_TYPE=Debug -DCMAKE_MAKE_PROGRAM=/Applications/CLion.app/Contents/bin/ninja/mac/ninja -DVELOX_BUILD_TESTING=ON -DVELOX_ENABLE_BENCHMARKS=ON -DVELOX_ENABLE_PARQUET=ON -DENABLE_ALL_WARNINGS=ON -G Ninja -S /Users/yingsu/repo/velox6/velox -B /Users/yingsu/repo/velox6/velox/cmake-build-debug
-- The C compiler identification is AppleClang 14.0.0.14000029
-- The CXX compiler identification is AppleClang 14.0.0.14000029
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: /Library/Developer/CommandLineTools/usr/bin/cc - skipped
-- Detecting C compile features
-- Detecting C compile features - done
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Check for working CXX compiler: /Library/Developer/CommandLineTools/usr/bin/c++ - skipped
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Build type: Debug
-- Using ccache: /usr/local/bin/ccache
-- Disabling Codegen
Setting CMAKE_CXX_FLAGS=-mavx2 -mfma -mavx -mf16c -mlzcnt -std=c++17 -mbmi2 -fvisibility=hidden -fvisibility-inlines-hidden
FINAL CMAKE_CXX_FLAGS= -mavx2 -mfma -mavx -mf16c -mlzcnt -std=c++17 -mbmi2 -fvisibility=hidden -fvisibility-inlines-hidden -D USE_VELOX_COMMON_BASE -D HAS_UNCAUGHT_EXCEPTIONS -Wall -Wextra -Wno-unused -Wno-unused-parameter -Wno-sign-compare -Wno-ignored-qualifiers -Wno-range-loop-analysis -Wno-mismatched-tags -Wno-nullability-completeness
-- Setting Boost source to AUTO
-- Found Boost: /usr/local/lib/cmake/Boost-1.82.0/BoostConfig.cmake (found suitable version "1.82.0", minimum required is "1.66.0") found components: headers atomic context date_time filesystem program_options regex system thread
-- Using SYSTEM Boost
-- Setting gflags source to AUTO
-- Using SYSTEM gflags
-- Setting fmt source to AUTO
-- Using SYSTEM fmt
-- Found ZLIB: /Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/usr/lib/libz.tbd (found version "1.2.11")
-- Setting re2 source to AUTO
-- Using SYSTEM re2
-- Setting simdjson source to AUTO
CMake Warning at CMake/ResolveDependency.cmake:70 (find_package):
By not providing "Findsimdjson.cmake" in CMAKE_MODULE_PATH this project has
asked CMake to find a package configuration file provided by "simdjson",
but CMake did not find one.
Could not find a package configuration file provided by "simdjson"
(requested version 3.1.5) with any of the following names:
simdjsonConfig.cmake
simdjson-config.cmake
Add the installation prefix of "simdjson" to CMAKE_PREFIX_PATH or set
"simdjson_DIR" to a directory containing one of the above files. If
"simdjson" provides a separate development package or SDK, be sure it has
been installed.
Call Stack (most recent call first):
CMakeLists.txt:414 (resolve_dependency)
-- Building simdjson from source
-- Using BUNDLED simdjson
-- Setting folly source to AUTO
-- Found Boost: /usr/local/lib/cmake/Boost-1.82.0/BoostConfig.cmake (found suitable version "1.82.0", minimum required is "1.51.0") found components: context filesystem program_options regex system thread
-- Found folly: /usr/local
-- Using SYSTEM folly
-- Setting Protobuf source to AUTO
-- Could NOT find Protobuf (missing: Protobuf_LIBRARIES Protobuf_INCLUDE_DIR) (Required is at least version "3.21.4")
-- Building Protobuf from source
--
-- 3.21.4.0
-- Using BUNDLED Protobuf
-- Found Bison keg installed by Homebrew at /usr/local/opt/bison
-- Found Flex keg installed by Homebrew at /usr/local/opt/flex
-- Building gtest from source
CMake Warning (dev) at CMakeLists.txt:498 (set):
Cannot set "VELOX_GTEST_INCUDE_DIR": current scope has no parent.
This warning is for project developers. Use -Wno-dev to suppress it.
-- Building xsimd from source
CMake Deprecation Warning at cmake-build-debug/_deps/xsimd-src/CMakeLists.txt:12 (cmake_minimum_required):
Compatibility with CMake < 3.5 will be removed from a future version of
CMake.
Update the VERSION argument <min> value or use a ...<max> suffix to tell
CMake that the project does not need compatibility with older versions.
-- xsimd v10.0.0
-- Checking for module 'thrift'
-- No package 'thrift' found
-- Could NOT find Thrift (missing: THRIFT_LIB THRIFT_INCLUDE_DIR) (found version "")
CMake Deprecation Warning at velox/external/duckdb/tpch/CMakeLists.txt:1 (cmake_minimum_required):
Compatibility with CMake < 3.5 will be removed from a future version of
CMake.
Update the VERSION argument <min> value or use a ...<max> suffix to tell
CMake that the project does not need compatibility with older versions.
CMake Deprecation Warning at velox/external/duckdb/tpch/dbgen/CMakeLists.txt:1 (cmake_minimum_required):
Compatibility with CMake < 3.5 will be removed from a future version of
CMake.
Update the VERSION argument <min> value or use a ...<max> suffix to tell
CMake that the project does not need compatibility with older versions.
-- Configuring done (65.1s)
-- Generating done (22.0s)
-- Build files have been written to: /Users/yingsu/repo/velox6/velox/cmake-build-debug
Yings-MacBook-Pro:velox yingsu$ cmake --build /Users/yingsu/repo/velox6/velox/cmake-build-debug --target all -j 14
[362/1482] Building CXX object _deps/protobuf-build/CMakeFiles/libprotobuf-lite.dir/src/google/protobuf/stubs/strutil.cc.o
/Users/yingsu/repo/velox6/velox/cmake-build-debug/_deps/protobuf-src/src/google/protobuf/stubs/strutil.cc:506:11: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only. Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
sprintf(dest + used, (use_hex ? "\\x%02x" : "\\%03o"),
^
/Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
__deprecated_msg("This function is provided for compatibility reasons only. Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
^
/Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
#define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
^
1 warning generated.
[364/1482] Linking CXX static library _deps/protobuf-build/libprotobuf-lited.a
/Library/Developer/CommandLineTools/usr/bin/ranlib: file: _deps/protobuf-build/libprotobuf-lited.a(io_win32.cc.o) has no symbols
/Library/Developer/CommandLineTools/usr/bin/ranlib: file: _deps/protobuf-build/libprotobuf-lited.a(io_win32.cc.o) has no symbols
[375/1482] Building CXX object _deps/protobuf-build/CMakeFiles/libprotobuf.dir/src/google/protobuf/stubs/strutil.cc.o
/Users/yingsu/repo/velox6/velox/cmake-build-debug/_deps/protobuf-src/src/google/protobuf/stubs/strutil.cc:506:11: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only. Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
sprintf(dest + used, (use_hex ? "\\x%02x" : "\\%03o"),
^
/Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
__deprecated_msg("This function is provided for compatibility reasons only. Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
^
/Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
#define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
^
1 warning generated.
[468/1482] Linking CXX static library _deps/protobuf-build/libprotobufd.a
/Library/Developer/CommandLineTools/usr/bin/ranlib: file: _deps/protobuf-build/libprotobufd.a(io_win32.cc.o) has no symbols
/Library/Developer/CommandLineTools/usr/bin/ranlib: file: _deps/protobuf-build/libprotobufd.a(error_listener.cc.o) has no symbols
/Library/Developer/CommandLineTools/usr/bin/ranlib: file: _deps/protobuf-build/libprotobufd.a(io_win32.cc.o) has no symbols
/Library/Developer/CommandLineTools/usr/bin/ranlib: file: _deps/protobuf-build/libprotobufd.a(error_listener.cc.o) has no symbols
[666/1482] Performing download step (download, verify and extract) for 'arrow_ep'
-- verifying file...
file='/Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/src/apache-arrow-8.0.0.tar.gz'
-- File already exists and hash match (skip download):
file='/Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/src/apache-arrow-8.0.0.tar.gz'
SHA256='ad9a05705117c989c116bae9ac70492fe015050e1b80fb0e38fde4b5d863aaa3'
-- extracting...
src='/Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/src/apache-arrow-8.0.0.tar.gz'
dst='/Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/src/arrow_ep'
-- extracting... [tar xfz]
-- extracting... [analysis]
-- extracting... [rename]
-- extracting... [clean up]
-- extracting... done
[691/1482] Performing configure step for 'arrow_ep'
-- Building using CMake version: 3.25.2
-- Arrow version: 8.0.0 (full: '8.0.0')
-- Arrow SO version: 800 (full: 800.0.0)
-- clang-tidy 12 not found
-- clang-format found, but version did not match "^clang-format version 12"
-- clang-format 12 not found
-- Could NOT find ClangTools (missing: CLANG_FORMAT_BIN CLANG_TIDY_BIN)
-- infer not found
-- Using ccache: /usr/local/bin/ccache
-- Found cpplint executable at /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/src/arrow_ep/cpp/build-support/cpplint.py
-- System processor: x86_64
-- Arrow build warning level: CHECKIN
Configured for DEBUG build (set with cmake -DCMAKE_BUILD_TYPE={release,debug,...})
-- Build Type: DEBUG
-- Using AUTO approach to find dependencies
-- ARROW_ABSL_BUILD_VERSION: 20210324.2
-- ARROW_ABSL_BUILD_SHA256_CHECKSUM: 59b862f50e710277f8ede96f083a5bb8d7c9595376146838b9580be90374ee1f
-- ARROW_AWSSDK_BUILD_VERSION: 1.8.133
-- ARROW_AWSSDK_BUILD_SHA256_CHECKSUM: d6c495bc06be5e21dac716571305d77437e7cfd62a2226b8fe48d9ab5785a8d6
-- ARROW_AWS_CHECKSUMS_BUILD_VERSION: v0.1.12
-- ARROW_AWS_CHECKSUMS_BUILD_SHA256_CHECKSUM: 394723034b81cc7cd528401775bc7aca2b12c7471c92350c80a0e2fb9d2909fe
-- ARROW_AWS_C_COMMON_BUILD_VERSION: v0.6.9
-- ARROW_AWS_C_COMMON_BUILD_SHA256_CHECKSUM: 928a3e36f24d1ee46f9eec360ec5cebfe8b9b8994fe39d4fa74ff51aebb12717
-- ARROW_AWS_C_EVENT_STREAM_BUILD_VERSION: v0.1.5
-- ARROW_AWS_C_EVENT_STREAM_BUILD_SHA256_CHECKSUM: f1b423a487b5d6dca118bfc0d0c6cc596dc476b282258a3228e73a8f730422d4
-- ARROW_BOOST_BUILD_VERSION: 1.75.0
-- ARROW_BOOST_BUILD_SHA256_CHECKSUM: 267e04a7c0bfe85daf796dedc789c3a27a76707e1c968f0a2a87bb96331e2b61
-- ARROW_BROTLI_BUILD_VERSION: v1.0.9
-- ARROW_BROTLI_BUILD_SHA256_CHECKSUM: f9e8d81d0405ba66d181529af42a3354f838c939095ff99930da6aa9cdf6fe46
-- ARROW_BZIP2_BUILD_VERSION: 1.0.8
-- ARROW_BZIP2_BUILD_SHA256_CHECKSUM: ab5a03176ee106d3f0fa90e381da478ddae405918153cca248e682cd0c4a2269
-- ARROW_CARES_BUILD_VERSION: 1.17.2
-- ARROW_CARES_BUILD_SHA256_CHECKSUM: 4803c844ce20ce510ef0eb83f8ea41fa24ecaae9d280c468c582d2bb25b3913d
-- ARROW_CRC32C_BUILD_VERSION: 1.1.2
-- ARROW_CRC32C_BUILD_SHA256_CHECKSUM: ac07840513072b7fcebda6e821068aa04889018f24e10e46181068fb214d7e56
-- ARROW_GBENCHMARK_BUILD_VERSION: v1.6.0
-- ARROW_GBENCHMARK_BUILD_SHA256_CHECKSUM: 1f71c72ce08d2c1310011ea6436b31e39ccab8c2db94186d26657d41747c85d6
-- ARROW_GFLAGS_BUILD_VERSION: v2.2.2
-- ARROW_GFLAGS_BUILD_SHA256_CHECKSUM: 34af2f15cf7367513b352bdcd2493ab14ce43692d2dcd9dfc499492966c64dcf
-- ARROW_GLOG_BUILD_VERSION: v0.5.0
-- ARROW_GLOG_BUILD_SHA256_CHECKSUM: eede71f28371bf39aa69b45de23b329d37214016e2055269b3b5e7cfd40b59f5
-- ARROW_GOOGLE_CLOUD_CPP_BUILD_VERSION: v1.39.0
-- ARROW_GOOGLE_CLOUD_CPP_BUILD_SHA256_CHECKSUM: 73e4e840018b24bec2beb49e036a3c2d8c471d4dc4a18b9026ccc4d8ab8e78cc
-- ARROW_GRPC_BUILD_VERSION: v1.35.0
-- ARROW_GRPC_BUILD_SHA256_CHECKSUM: 27dd2fc5c9809ddcde8eb6fa1fa278a3486566dfc28335fca13eb8df8bd3b958
-- ARROW_GTEST_BUILD_VERSION: 1.11.0
-- ARROW_GTEST_BUILD_SHA256_CHECKSUM: b4870bf121ff7795ba20d20bcdd8627b8e088f2d1dab299a031c1034eddc93d5
-- ARROW_JEMALLOC_BUILD_VERSION: 5.2.1
-- ARROW_JEMALLOC_BUILD_SHA256_CHECKSUM: 34330e5ce276099e2e8950d9335db5a875689a4c6a56751ef3b1d8c537f887f6
-- ARROW_LZ4_BUILD_VERSION: 8f61d8eb7c6979769a484cde8df61ff7c4c77765
-- ARROW_LZ4_BUILD_SHA256_CHECKSUM: 5b072d848f2f93fddb97e1143e22c1bd7fa19fc8431ee69e21758190a88125b4
-- ARROW_MIMALLOC_BUILD_VERSION: v1.7.3
-- ARROW_MIMALLOC_BUILD_SHA256_CHECKSUM: 0f987bda01ca9df87ec90e9d98c63fa893ee61f3cca565e5ca5ed744fdcc5109
-- ARROW_NLOHMANN_JSON_BUILD_VERSION: v3.10.2
-- ARROW_NLOHMANN_JSON_BUILD_SHA256_CHECKSUM: 081ed0f9f89805c2d96335c3acfa993b39a0a5b4b4cef7edb68dd2210a13458c
-- ARROW_OPENTELEMETRY_BUILD_VERSION: v1.3.0
-- ARROW_OPENTELEMETRY_BUILD_SHA256_CHECKSUM: 6a4c43b9c9f753841ebc0fe2717325271f02e2a1d5ddd0b52735c35243629ab3
-- ARROW_OPENTELEMETRY_PROTO_BUILD_VERSION: v0.11.0
-- ARROW_OPENTELEMETRY_PROTO_BUILD_SHA256_CHECKSUM: 985367f8905e91018e636cbf0d83ab3f834b665c4f5899a27d10cae9657710e2
-- ARROW_ORC_BUILD_VERSION: 1.7.3
-- ARROW_ORC_BUILD_SHA256_CHECKSUM: 535c4d7588172e85b8fc941cd0575d67f2155a55e4cd65d87d5b194b0bb28a31
-- ARROW_PROTOBUF_BUILD_VERSION: v3.18.1
-- ARROW_PROTOBUF_BUILD_SHA256_CHECKSUM: b8ab9bbdf0c6968cf20060794bc61e231fae82aaf69d6e3577c154181991f576
-- ARROW_RAPIDJSON_BUILD_VERSION: 1a803826f1197b5e30703afe4b9c0e7dd48074f5
-- ARROW_RAPIDJSON_BUILD_SHA256_CHECKSUM: 0b6b780b6c534bfb0b23d29910bfe361e486bcfeaf106db8bc8995792072905a
-- ARROW_RE2_BUILD_VERSION: 2021-11-01
-- ARROW_RE2_BUILD_SHA256_CHECKSUM: 8c45f7fba029ab41f2a7e6545058d9eec94eef97ce70df58e92d85cfc08b4669
-- ARROW_SNAPPY_BUILD_VERSION: 1.1.9
-- ARROW_SNAPPY_BUILD_SHA256_CHECKSUM: 75c1fbb3d618dd3a0483bff0e26d0a92b495bbe5059c8b4f1c962b478b6e06e7
-- ARROW_SNAPPY_OLD_BUILD_VERSION: 1.1.8
-- ARROW_SNAPPY_OLD_BUILD_SHA256_CHECKSUM: 16b677f07832a612b0836178db7f374e414f94657c138e6993cbfc5dcc58651f
-- ARROW_SUBSTRAIT_BUILD_VERSION: e1b4c04a
-- ARROW_SUBSTRAIT_BUILD_SHA256_CHECKSUM: 65f83e5f5d979ede5fc8ac9f8bbaf793e0c72d9c415f1a162ba522f6d0bb5bbe
-- ARROW_THRIFT_BUILD_VERSION: 0.13.0
-- ARROW_THRIFT_BUILD_SHA256_CHECKSUM: 7ad348b88033af46ce49148097afe354d513c1fca7c607b59c33ebb6064b5179
-- ARROW_UTF8PROC_BUILD_VERSION: v2.7.0
-- ARROW_UTF8PROC_BUILD_SHA256_CHECKSUM: 4bb121e297293c0fd55f08f83afab6d35d48f0af4ecc07523ad8ec99aa2b12a1
-- ARROW_XSIMD_BUILD_VERSION: 7d1778c3b38d63db7cec7145d939f40bc5d859d1
-- ARROW_XSIMD_BUILD_SHA256_CHECKSUM: d861f4f3034550cdc62ad93fd60e8b0f2413a6ea49081c8698922b7b4f043ec6
-- ARROW_ZLIB_BUILD_VERSION: 1.2.12
-- ARROW_ZLIB_BUILD_SHA256_CHECKSUM: 91844808532e5ce316b3c010929493c0244f3d37593afd6de04f71821d5136d9
-- ARROW_ZSTD_BUILD_VERSION: v1.5.1
-- ARROW_ZSTD_BUILD_SHA256_CHECKSUM: dc05773342b28f11658604381afd22cb0a13e8ba17ff2bd7516df377060c18dd
-- Boost include dir: /usr/local/include
-- Boost libraries: Boost::system;Boost::filesystem
-- Providing CMake module for Snappy
-- Building without OpenSSL support. Minimum OpenSSL version 1.0.2 required.
Building Apache Thrift from source
CMake Warning (dev) at /Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.25/Modules/ExternalProject.cmake:3075 (message):
The DOWNLOAD_EXTRACT_TIMESTAMP option was not given and policy CMP0135 is
not set. The policy's OLD behavior will be used. When using a URL
download, the timestamps of extracted files should preferably be that of
the time of extraction, otherwise code that depends on the extracted
contents might not be rebuilt if the URL changes. The OLD behavior
preserves the timestamps from the archive instead, but this is usually not
what you want. Update your project to the NEW behavior or specify the
DOWNLOAD_EXTRACT_TIMESTAMP option with a value of true to avoid this
robustness issue.
Call Stack (most recent call first):
/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.25/Modules/ExternalProject.cmake:4185 (_ep_add_download_command)
cmake_modules/ThirdpartyToolchain.cmake:1403 (externalproject_add)
cmake_modules/ThirdpartyToolchain.cmake:183 (build_thrift)
cmake_modules/ThirdpartyToolchain.cmake:245 (build_dependency)
cmake_modules/ThirdpartyToolchain.cmake:1428 (resolve_dependency)
CMakeLists.txt:552 (include)
This warning is for project developers. Use -Wno-dev to suppress it.
-- Providing CMake module for Lz4
-- Providing CMake module for zstd
-- Providing CMake module for re2Alt
-- Did not find hdfs.h in expected location, using vendored one
-- Found hdfs.h at: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/src/arrow_ep/cpp/thirdparty/hadoop/include/hdfs.h
-- All bundled static libraries: thrift::thrift
-- CMAKE_C_FLAGS: -Qunused-arguments -ggdb -O0 -Wall -Wextra -Wdocumentation -Wshorten-64-to-32 -Wno-missing-braces -Wno-unused-parameter -Wno-constant-logical-operand -Werror -Wno-unknown-warning-option -Wno-pass-failed -stdlib=libc++
-- CMAKE_CXX_FLAGS: -Qunused-arguments -fcolor-diagnostics -ggdb -O0 -Wall -Wextra -Wdocumentation -Wshorten-64-to-32 -Wno-missing-braces -Wno-unused-parameter -Wno-constant-logical-operand -Werror -Wno-unknown-warning-option -Wno-pass-failed -stdlib=libc++
-- Creating bundled static library target arrow_bundled_dependencies at /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/src/arrow_ep-build/debug/libarrow_bundled_dependencies.a
-- ---------------------------------------------------------------------
-- Arrow version: 8.0.0
--
-- Build configuration summary:
-- Generator: Ninja
-- Build type: DEBUG
-- Source directory: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/src/arrow_ep/cpp
-- Install prefix: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install
--
-- Compile and link options:
--
-- ARROW_CXXFLAGS="" [default=""]
-- Compiler flags to append when compiling Arrow
-- ARROW_BUILD_STATIC=ON [default=ON]
-- Build static libraries
-- ARROW_BUILD_SHARED=ON [default=ON]
-- Build shared libraries
-- ARROW_PACKAGE_KIND="" [default=""]
-- Arbitrary string that identifies the kind of package
-- (for informational purposes)
-- ARROW_GIT_ID=8d3ce61d2fdd43727f07405eacf2916578ffb475 [default=""]
-- The Arrow git commit id (if any)
-- ARROW_GIT_DESCRIPTION="" [default=""]
-- The Arrow git commit description (if any)
-- ARROW_NO_DEPRECATED_API=OFF [default=OFF]
-- Exclude deprecated APIs from build
-- ARROW_USE_CCACHE=ON [default=ON]
-- Use ccache when compiling (if available)
-- ARROW_USE_LD_GOLD=OFF [default=OFF]
-- Use ld.gold for linking on Linux (if available)
-- ARROW_USE_PRECOMPILED_HEADERS=OFF [default=OFF]
-- Use precompiled headers when compiling
-- ARROW_SIMD_LEVEL=NONE [default=NONE|SSE4_2|AVX2|AVX512|NEON|DEFAULT]
-- Compile-time SIMD optimization level
-- ARROW_RUNTIME_SIMD_LEVEL=NONE [default=NONE|SSE4_2|AVX2|AVX512|MAX]
-- Max runtime SIMD optimization level
-- ARROW_ARMV8_ARCH=armv8-a [default=armv8-a|armv8-a+crc+crypto]
-- Arm64 arch and extensions
-- ARROW_ALTIVEC=ON [default=ON]
-- Build with Altivec if compiler has support
-- ARROW_RPATH_ORIGIN=OFF [default=OFF]
-- Build Arrow libraries with RATH set to $ORIGIN
-- ARROW_INSTALL_NAME_RPATH=ON [default=ON]
-- Build Arrow libraries with install_name set to @rpath
-- ARROW_GGDB_DEBUG=ON [default=ON]
-- Pass -ggdb flag to debug builds
--
-- Test and benchmark options:
--
-- ARROW_BUILD_EXAMPLES=OFF [default=OFF]
-- Build the Arrow examples
-- ARROW_BUILD_TESTS=OFF [default=OFF]
-- Build the Arrow googletest unit tests
-- ARROW_ENABLE_TIMING_TESTS=ON [default=ON]
-- Enable timing-sensitive tests
-- ARROW_BUILD_INTEGRATION=OFF [default=OFF]
-- Build the Arrow integration test executables
-- ARROW_BUILD_BENCHMARKS=OFF [default=OFF]
-- Build the Arrow micro benchmarks
-- ARROW_BUILD_BENCHMARKS_REFERENCE=OFF [default=OFF]
-- Build the Arrow micro reference benchmarks
-- ARROW_BUILD_OPENMP_BENCHMARKS=OFF [default=OFF]
-- Build the Arrow benchmarks that rely on OpenMP
-- ARROW_BUILD_DETAILED_BENCHMARKS=OFF [default=OFF]
-- Build benchmarks that do a longer exploration of performance
-- ARROW_TEST_LINKAGE=shared [default=shared|static]
-- Linkage of Arrow libraries with unit tests executables.
-- ARROW_FUZZING=OFF [default=OFF]
-- Build Arrow Fuzzing executables
-- ARROW_LARGE_MEMORY_TESTS=OFF [default=OFF]
-- Enable unit tests which use large memory
--
-- Lint options:
--
-- ARROW_ONLY_LINT=OFF [default=OFF]
-- Only define the lint and check-format targets
-- ARROW_VERBOSE_LINT=OFF [default=OFF]
-- If off, 'quiet' flags will be passed to linting tools
-- ARROW_GENERATE_COVERAGE=OFF [default=OFF]
-- Build with C++ code coverage enabled
--
-- Checks options:
--
-- ARROW_TEST_MEMCHECK=OFF [default=OFF]
-- Run the test suite using valgrind --tool=memcheck
-- ARROW_USE_ASAN=OFF [default=OFF]
-- Enable Address Sanitizer checks
-- ARROW_USE_TSAN=OFF [default=OFF]
-- Enable Thread Sanitizer checks
-- ARROW_USE_UBSAN=OFF [default=OFF]
-- Enable Undefined Behavior sanitizer checks
--
-- Project component options:
--
-- ARROW_BUILD_UTILITIES=OFF [default=OFF]
-- Build Arrow commandline utilities
-- ARROW_COMPUTE=ON [default=OFF]
-- Build the Arrow Compute Modules
-- ARROW_CSV=OFF [default=OFF]
-- Build the Arrow CSV Parser Module
-- ARROW_CUDA=OFF [default=OFF]
-- Build the Arrow CUDA extensions (requires CUDA toolkit)
-- ARROW_DATASET=OFF [default=OFF]
-- Build the Arrow Dataset Modules
-- ARROW_SUBSTRAIT=OFF [default=OFF]
-- Build the Arrow Substrait Consumer Module
-- ARROW_FILESYSTEM=OFF [default=OFF]
-- Build the Arrow Filesystem Layer
-- ARROW_FLIGHT=OFF [default=OFF]
-- Build the Arrow Flight RPC System (requires GRPC, Protocol Buffers)
-- ARROW_FLIGHT_SQL=OFF [default=OFF]
-- Build the Arrow Flight SQL extension
-- ARROW_GANDIVA=OFF [default=OFF]
-- Build the Gandiva libraries
-- ARROW_GCS=OFF [default=OFF]
-- Build Arrow with GCS support (requires the GCloud SDK for C++)
-- ARROW_HDFS=OFF [default=OFF]
-- Build the Arrow HDFS bridge
-- ARROW_HIVESERVER2=OFF [default=OFF]
-- Build the HiveServer2 client and Arrow adapter
-- ARROW_IPC=ON [default=ON]
-- Build the Arrow IPC extensions
-- ARROW_JEMALLOC=OFF [default=ON]
-- Build the Arrow jemalloc-based allocator
-- ARROW_JNI=OFF [default=OFF]
-- Build the Arrow JNI lib
-- ARROW_JSON=OFF [default=OFF]
-- Build Arrow with JSON support (requires RapidJSON)
-- ARROW_MIMALLOC=OFF [default=OFF]
-- Build the Arrow mimalloc-based allocator
-- ARROW_PARQUET=ON [default=OFF]
-- Build the Parquet libraries
-- ARROW_ORC=OFF [default=OFF]
-- Build the Arrow ORC adapter
-- ARROW_PLASMA=OFF [default=OFF]
-- Build the plasma object store along with Arrow
-- ARROW_PLASMA_JAVA_CLIENT=OFF [default=OFF]
-- Build the plasma object store java client
-- ARROW_PYTHON=OFF [default=OFF]
-- Build the Arrow CPython extensions
-- ARROW_S3=OFF [default=OFF]
-- Build Arrow with S3 support (requires the AWS SDK for C++)
-- ARROW_SKYHOOK=OFF [default=OFF]
-- Build the Skyhook libraries
-- ARROW_TENSORFLOW=OFF [default=OFF]
-- Build Arrow with TensorFlow support enabled
-- ARROW_TESTING=OFF [default=OFF]
-- Build the Arrow testing libraries
--
-- Thirdparty toolchain options:
--
-- ARROW_DEPENDENCY_SOURCE=AUTO [default=AUTO|BUNDLED|SYSTEM|CONDA|VCPKG|BREW]
-- Method to use for acquiring arrow's build dependencies
-- ARROW_VERBOSE_THIRDPARTY_BUILD=OFF [default=OFF]
-- Show output from ExternalProjects rather than just logging to files
-- ARROW_DEPENDENCY_USE_SHARED=ON [default=ON]
-- Link to shared libraries
-- ARROW_BOOST_USE_SHARED=ON [default=ON]
-- Rely on boost shared libraries where relevant
-- ARROW_BROTLI_USE_SHARED=ON [default=ON]
-- Rely on Brotli shared libraries where relevant
-- ARROW_BZ2_USE_SHARED=ON [default=ON]
-- Rely on Bz2 shared libraries where relevant
-- ARROW_GFLAGS_USE_SHARED=ON [default=ON]
-- Rely on GFlags shared libraries where relevant
-- ARROW_GRPC_USE_SHARED=ON [default=ON]
-- Rely on gRPC shared libraries where relevant
-- ARROW_LZ4_USE_SHARED=ON [default=ON]
-- Rely on lz4 shared libraries where relevant
-- ARROW_OPENSSL_USE_SHARED=ON [default=ON]
-- Rely on OpenSSL shared libraries where relevant
-- ARROW_PROTOBUF_USE_SHARED=ON [default=ON]
-- Rely on Protocol Buffers shared libraries where relevant
-- ARROW_THRIFT_USE_SHARED=ON [default=ON]
-- Rely on thrift shared libraries where relevant
-- ARROW_UTF8PROC_USE_SHARED=ON [default=ON]
-- Rely on utf8proc shared libraries where relevant
-- ARROW_SNAPPY_USE_SHARED=ON [default=ON]
-- Rely on snappy shared libraries where relevant
-- ARROW_UTF8PROC_USE_SHARED=ON [default=ON]
-- Rely on utf8proc shared libraries where relevant
-- ARROW_ZSTD_USE_SHARED=ON [default=ON]
-- Rely on zstd shared libraries where relevant
-- ARROW_USE_GLOG=OFF [default=OFF]
-- Build libraries with glog support for pluggable logging
-- ARROW_WITH_BACKTRACE=ON [default=ON]
-- Build with backtrace support
-- ARROW_WITH_OPENTELEMETRY=OFF [default=OFF]
-- Build libraries with OpenTelemetry support for distributed tracing
-- ARROW_WITH_BROTLI=OFF [default=OFF]
-- Build with Brotli compression
-- ARROW_WITH_BZ2=OFF [default=OFF]
-- Build with BZ2 compression
-- ARROW_WITH_LZ4=ON [default=OFF]
-- Build with lz4 compression
-- ARROW_WITH_SNAPPY=ON [default=OFF]
-- Build with Snappy compression
-- ARROW_WITH_ZLIB=ON [default=OFF]
-- Build with zlib compression
-- ARROW_WITH_ZSTD=ON [default=OFF]
-- Build with zstd compression
-- ARROW_WITH_UCX=OFF [default=OFF]
-- Build with UCX transport for Arrow Flight
-- (only used if ARROW_FLIGHT is ON)
-- ARROW_WITH_UTF8PROC=OFF [default=ON]
-- Build with support for Unicode properties using the utf8proc library
-- (only used if ARROW_COMPUTE is ON or ARROW_GANDIVA is ON)
-- ARROW_WITH_RE2=ON [default=ON]
-- Build with support for regular expressions using the re2 library
-- (only used if ARROW_COMPUTE or ARROW_GANDIVA is ON)
--
-- Parquet options:
--
-- PARQUET_MINIMAL_DEPENDENCY=OFF [default=OFF]
-- Depend only on Thirdparty headers to build libparquet.
-- Always OFF if building binaries
-- PARQUET_BUILD_EXECUTABLES=OFF [default=OFF]
-- Build the Parquet executable CLI tools. Requires static libraries to be built.
-- PARQUET_BUILD_EXAMPLES=OFF [default=OFF]
-- Build the Parquet examples. Requires static libraries to be built.
-- PARQUET_REQUIRE_ENCRYPTION=OFF [default=OFF]
-- Build support for encryption. Fail if OpenSSL is not found
--
-- Gandiva options:
--
-- ARROW_GANDIVA_JAVA=OFF [default=OFF]
-- Build the Gandiva JNI wrappers
-- ARROW_GANDIVA_STATIC_LIBSTDCPP=OFF [default=OFF]
-- Include -static-libstdc++ -static-libgcc when linking with
-- Gandiva static libraries
-- ARROW_GANDIVA_PC_CXX_FLAGS="" [default=""]
-- Compiler flags to append when pre-compiling Gandiva operations
--
-- Advanced developer options:
--
-- ARROW_EXTRA_ERROR_CONTEXT=OFF [default=OFF]
-- Compile with extra error context (line numbers, code)
-- ARROW_OPTIONAL_INSTALL=OFF [default=OFF]
-- If enabled install ONLY targets that have already been built. Please be
-- advised that if this is enabled 'install' will fail silently on components
-- that have not been built
-- Outputting build configuration summary to /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/src/arrow_ep-build/cmake_summary.json
-- Configuring done
-- Generating done
-- Build files have been written to: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/src/arrow_ep-build
[697/1482] Linking CXX static library velox/vector/fuzzer/libvelox_vector_fuzzer.a
/Library/Developer/CommandLineTools/usr/bin/ranlib: file: velox/vector/fuzzer/libvelox_vector_fuzzer.a(GeneratorSpec.cpp.o) has no symbols
/Library/Developer/CommandLineTools/usr/bin/ranlib: file: velox/vector/fuzzer/libvelox_vector_fuzzer.a(GeneratorSpec.cpp.o) has no symbols
[725/1482] Linking CXX static library velox/functions/prestosql/libvelox_functions_prestosql_impl.a
/Library/Developer/CommandLineTools/usr/bin/ranlib: file: velox/functions/prestosql/libvelox_functions_prestosql_impl.a(VectorArithmetic.cpp.o) has no symbols
/Library/Developer/CommandLineTools/usr/bin/ranlib: file: velox/functions/prestosql/libvelox_functions_prestosql_impl.a(VectorArithmetic.cpp.o) has no symbols
[841/1482] Performing build step for 'arrow_ep'
[1/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/array/array_decimal.cc.o
[2/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/array/array_binary.cc.o
[3/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/array/array_primitive.cc.o
[4/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/array/data.cc.o
[5/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/array/builder_adaptive.cc.o
[6/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/array/builder_primitive.cc.o
[7/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/array/builder_decimal.cc.o
[8/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/array/builder_binary.cc.o
[9/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/array/builder_union.cc.o
[10/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/array/builder_nested.cc.o
[11/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/array/concatenate.cc.o
[12/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/array/builder_base.cc.o
[13/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/array/array_nested.cc.o
[14/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/buffer.cc.o
[15/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/config.cc.o
[16/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/chunk_resolver.cc.o
[17/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/array/builder_dict.cc.o
[18/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/chunked_array.cc.o
[19/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/device.cc.o
[20/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/array/util.cc.o
[21/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/array/validate.cc.o
[22/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/array/array_base.cc.o
[23/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/result.cc.o
[24/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/array/array_dict.cc.o
[25/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/extension_type.cc.o
[26/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/compare.cc.o
[27/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/datum.cc.o
[28/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/memory_pool.cc.o
[29/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/status.cc.o
[30/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/record_batch.cc.o
[31/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/sparse_tensor.cc.o
[32/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/pretty_print.cc.o
[33/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/table_builder.cc.o
[34/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/tensor.cc.o
[35/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/tensor/csx_converter.cc.o
[36/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/visitor.cc.o
[37/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/tensor/csf_converter.cc.o
[38/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/tensor/coo_converter.cc.o
[39/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/table.cc.o
[40/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/io/buffered.cc.o
[41/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/io/caching.cc.o
[42/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/io/compressed.cc.o
[43/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/io/hdfs_internal.cc.o
[44/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/io/stdio.cc.o
[45/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/io/file.cc.o
[46/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/io/hdfs.cc.o
[47/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/util/bit_block_counter.cc.o
[48/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/util/basic_decimal.cc.o
[49/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/util/bit_util.cc.o
[50/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/io/memory.cc.o
[51/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/util/bit_run_reader.cc.o
[52/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/io/slow.cc.o
[53/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/util/debug.cc.o
[54/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/io/transform.cc.o
[55/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/io/interfaces.cc.o
[56/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/util/async_util.cc.o
[57/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/c/bridge.cc.o
[58/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/util/bitmap.cc.o
[59/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/util/bitmap_builders.cc.o
[60/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/util/bitmap_ops.cc.o
[61/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/util/counting_semaphore.cc.o
[62/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/util/compression.cc.o
[63/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/util/bpacking.cc.o
[64/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/util/cancel.cc.o
[65/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/util/cpu_info.cc.o
[66/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/util/delimiting.cc.o
[67/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/type.cc.o
[68/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/util/logging.cc.o
[69/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/util/formatting.cc.o
[70/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/util/mutex.cc.o
[71/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/util/byte_size.cc.o
[72/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/builder.cc.o
[73/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/util/decimal.cc.o
[74/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/util/string_builder.cc.o
[75/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/util/future.cc.o
[76/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/util/int_util.cc.o
[77/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/util/key_value_metadata.cc.o
[78/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/util/string.cc.o
[79/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/vendored/double-conversion/bignum.cc.o
[80/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/util/memory.cc.o
[81/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/util/io_util.cc.o
[82/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/scalar.cc.o
[83/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/vendored/double-conversion/fast-dtoa.cc.o
[84/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/vendored/double-conversion/bignum-dtoa.cc.o
[85/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/util/time.cc.o
[86/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/util/tdigest.cc.o
[87/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/vendored/double-conversion/cached-powers.cc.o
[88/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/vendored/double-conversion/diy-fp.cc.o
[89/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/vendored/datetime/ios.mm.o
[90/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/vendored/double-conversion/strtod.cc.o
[91/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/vendored/double-conversion/fixed-dtoa.cc.o
[92/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/util/unreachable.cc.o
[93/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/util/task_group.cc.o
[94/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/util/trie.cc.o
[95/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/util/tracing.cc.o
[96/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/util/utf8.cc.o
[97/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/vendored/base64.cpp.o
[98/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/vendored/double-conversion/double-conversion.cc.o
[99/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/util/thread_pool.cc.o
[100/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/util/compression_snappy.cc.o
[101/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/util/compression_zstd.cc.o
[102/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/util/compression_zlib.cc.o
[103/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/util/compression_lz4.cc.o
[104/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/util/uri.cc.o
[105/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/util/value_parsing.cc.o
[106/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/array/diff.cc.o
[107/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/vendored/datetime/tz.cpp.o
[108/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/compute/exec/bloom_filter.cc.o
[109/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/compute/exec.cc.o
[110/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/compute/exec/key_compare.cc.o
[111/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/compute/exec/filter_node.cc.o
[112/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/compute/cast.cc.o
[113/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/compute/exec/key_hash.cc.o
[114/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/compute/exec/key_encode.cc.o
[115/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/compute/exec/key_map.cc.o
[116/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/compute/api_aggregate.cc.o
[117/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/compute/api_vector.cc.o
[118/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/compute/exec/aggregate_node.cc.o
[119/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/compute/exec/exec_plan.cc.o
[120/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/compute/exec/hash_join_dict.cc.o
[121/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/compute/exec/options.cc.o
[122/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/compute/exec/task_util.cc.o
[123/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/compute/exec/partition_util.cc.o
[124/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/compute/exec/hash_join.cc.o
[125/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/compute/exec/order_by_impl.cc.o
[126/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/compute/exec/expression.cc.o
[127/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/compute/exec/hash_join_node.cc.o
[128/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/compute/exec/project_node.cc.o
[129/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/compute/exec/util.cc.o
[130/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/compute/kernel.cc.o
[131/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/compute/exec/ir_consumer.cc.o
[132/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/compute/api_scalar.cc.o
[133/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/compute/exec/union_node.cc.o
[134/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/compute/exec/sink_node.cc.o
[135/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/compute/light_array.cc.o
[136/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/compute/exec/source_node.cc.o
[137/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/compute/function_internal.cc.o
[138/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/compute/function.cc.o
[139/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/compute/registry.cc.o
[140/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/compute/kernels/codegen_internal.cc.o
[141/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/compute/kernels/aggregate_var_std.cc.o
[142/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/compute/kernels/aggregate_tdigest.cc.o
[143/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/compute/kernels/row_encoder.cc.o
[144/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/compute/kernels/scalar_boolean.cc.o
[145/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/compute/kernels/scalar_cast_dictionary.cc.o
[146/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/compute/kernels/scalar_cast_boolean.cc.o
[147/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/compute/kernels/scalar_cast_nested.cc.o
[148/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/compute/kernels/scalar_cast_internal.cc.o
[149/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/compute/kernels/aggregate_quantile.cc.o
[150/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/compute/kernels/aggregate_mode.cc.o
[151/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/compute/kernels/scalar_cast_temporal.cc.o
[152/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/compute/kernels/scalar_random.cc.o
[153/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/compute/kernels/scalar_cast_string.cc.o
[154/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/compute/kernels/scalar_cast_numeric.cc.o
[155/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/compute/kernels/scalar_string_utf8.cc.o
[156/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/compute/kernels/scalar_validity.cc.o
[157/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/compute/kernels/scalar_set_lookup.cc.o
[158/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/compute/kernels/util_internal.cc.o
[159/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/compute/kernels/aggregate_basic.cc.o
[160/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/compute/kernels/scalar_nested.cc.o
[161/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/compute/kernels/scalar_if_else.cc.o
[162/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/compute/kernels/scalar_compare.cc.o
[163/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/compute/kernels/vector_nested.cc.o
[164/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/ipc/dictionary.cc.o
[165/235] Building C object src/arrow/CMakeFiles/arrow_objlib.dir/vendored/musl/strptime.c.o
[166/235] Building C object src/arrow/CMakeFiles/arrow_objlib.dir/vendored/uriparser/UriCommon.c.o
[167/235] Building C object src/arrow/CMakeFiles/arrow_objlib.dir/vendored/uriparser/UriCompare.c.o
[168/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/ipc/options.cc.o
[169/235] Building C object src/arrow/CMakeFiles/arrow_objlib.dir/vendored/uriparser/UriEscape.c.o
[170/235] Building C object src/arrow/CMakeFiles/arrow_objlib.dir/vendored/uriparser/UriIp4Base.c.o
[171/235] Building C object src/arrow/CMakeFiles/arrow_objlib.dir/vendored/uriparser/UriFile.c.o
[172/235] Building C object src/arrow/CMakeFiles/arrow_objlib.dir/vendored/uriparser/UriIp4.c.o
[173/235] Building C object src/arrow/CMakeFiles/arrow_objlib.dir/vendored/uriparser/UriMemory.c.o
[174/235] Building C object src/arrow/CMakeFiles/arrow_objlib.dir/vendored/uriparser/UriNormalizeBase.c.o
[175/235] Building C object src/arrow/CMakeFiles/arrow_objlib.dir/vendored/uriparser/UriParseBase.c.o
[176/235] Building C object src/arrow/CMakeFiles/arrow_objlib.dir/vendored/uriparser/UriNormalize.c.o
[177/235] Building C object src/arrow/CMakeFiles/arrow_objlib.dir/vendored/uriparser/UriQuery.c.o
[178/235] Building C object src/arrow/CMakeFiles/arrow_objlib.dir/vendored/uriparser/UriParse.c.o
[179/235] Building C object src/arrow/CMakeFiles/arrow_objlib.dir/vendored/uriparser/UriRecompose.c.o
[180/235] Building C object src/arrow/CMakeFiles/arrow_objlib.dir/vendored/uriparser/UriResolve.c.o
[181/235] Building C object src/arrow/CMakeFiles/arrow_objlib.dir/vendored/uriparser/UriShorten.c.o
[182/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/compute/kernels/vector_replace.cc.o
[183/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/ipc/feather.cc.o
[184/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/compute/exec/tpch_node.cc.o
[185/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/ipc/message.cc.o
[186/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/compute/kernels/vector_hash.cc.o
[187/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/compute/kernels/vector_selection.cc.o
[188/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/ipc/metadata_internal.cc.o
[189/235] Building CXX object src/parquet/CMakeFiles/parquet_objlib.dir/arrow/schema_internal.cc.o
[190/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/compute/kernels/vector_array_sort.cc.o
[191/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/ipc/writer.cc.o
[192/235] Building CXX object src/parquet/CMakeFiles/parquet_objlib.dir/bloom_filter.cc.o
[193/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/compute/kernels/scalar_string_ascii.cc.o
[194/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/compute/kernels/scalar_temporal_binary.cc.o
[195/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/compute/kernels/scalar_arithmetic.cc.o
[196/235] Building CXX object src/parquet/CMakeFiles/parquet_objlib.dir/column_scanner.cc.o
[197/235] Building CXX object src/parquet/CMakeFiles/parquet_objlib.dir/arrow/writer.cc.o
[198/235] Building CXX object src/parquet/CMakeFiles/parquet_objlib.dir/arrow/path_internal.cc.o
[199/235] Building CXX object src/parquet/CMakeFiles/parquet_objlib.dir/encryption/internal_file_decryptor.cc.o
[200/235] Building CXX object src/parquet/CMakeFiles/parquet_objlib.dir/exception.cc.o
[201/235] Building CXX object src/parquet/CMakeFiles/parquet_objlib.dir/arrow/schema.cc.o
[202/235] Building CXX object src/parquet/CMakeFiles/parquet_objlib.dir/encryption/encryption.cc.o
[203/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/ipc/reader.cc.o
[204/235] Building CXX object src/parquet/CMakeFiles/parquet_objlib.dir/level_comparison.cc.o
[205/235] Building CXX object src/parquet/CMakeFiles/parquet_objlib.dir/level_conversion.cc.o
[206/235] Building CXX object src/parquet/CMakeFiles/parquet_objlib.dir/encryption/internal_file_encryptor.cc.o
[207/235] Building CXX object src/parquet/CMakeFiles/parquet_objlib.dir/arrow/reader_internal.cc.o
[208/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/compute/kernels/hash_aggregate.cc.o
[209/235] Building CXX object src/parquet/CMakeFiles/parquet_objlib.dir/murmur3.cc.o
[210/235] Building CXX object src/parquet/CMakeFiles/parquet_objlib.dir/__/generated/parquet_constants.cpp.o
[211/235] Building CXX object src/parquet/CMakeFiles/parquet_objlib.dir/platform.cc.o
[212/235] Building CXX object src/parquet/CMakeFiles/parquet_objlib.dir/file_writer.cc.o
[213/235] Building CXX object src/parquet/CMakeFiles/parquet_objlib.dir/encoding.cc.o
[214/235] Building CXX object src/parquet/CMakeFiles/parquet_objlib.dir/arrow/reader.cc.o
[215/235] Building CXX object src/parquet/CMakeFiles/parquet_objlib.dir/file_reader.cc.o
[216/235] Building CXX object src/parquet/CMakeFiles/parquet_objlib.dir/printer.cc.o
[217/235] Building CXX object src/parquet/CMakeFiles/parquet_objlib.dir/properties.cc.o
[218/235] Building CXX object src/parquet/CMakeFiles/parquet_objlib.dir/stream_writer.cc.o
[219/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/compute/kernels/scalar_temporal_unary.cc.o
[220/235] Building CXX object src/parquet/CMakeFiles/parquet_objlib.dir/encryption/encryption_internal_nossl.cc.o
[221/235] Building CXX object src/parquet/CMakeFiles/parquet_objlib.dir/stream_reader.cc.o
[222/235] Building CXX object src/parquet/CMakeFiles/parquet_objlib.dir/column_writer.cc.o
[223/235] Building CXX object src/parquet/CMakeFiles/parquet_objlib.dir/__/generated/parquet_types.cpp.o
[224/235] Building CXX object src/parquet/CMakeFiles/parquet_objlib.dir/types.cc.o
[225/235] Building CXX object src/parquet/CMakeFiles/parquet_objlib.dir/column_reader.cc.o
[226/235] Building CXX object src/parquet/CMakeFiles/parquet_objlib.dir/schema.cc.o
[227/235] Building CXX object src/parquet/CMakeFiles/parquet_objlib.dir/statistics.cc.o
[228/235] Building CXX object src/parquet/CMakeFiles/parquet_objlib.dir/metadata.cc.o
[229/235] Building CXX object src/arrow/CMakeFiles/arrow_objlib.dir/compute/kernels/vector_sort.cc.o
[230/235] Linking CXX shared library debug/libarrow.800.0.0.dylib
ld: warning: -undefined dynamic_lookup may not work with chained fixups
[231/235] Creating library symlink debug/libarrow.800.dylib debug/libarrow.dylib
[232/235] Linking CXX shared library debug/libparquet.800.0.0.dylib
ld: warning: -undefined dynamic_lookup may not work with chained fixups
[233/235] Creating library symlink debug/libparquet.800.dylib debug/libparquet.dylib
[234/235] Linking CXX static library debug/libarrow.a
/Library/Developer/CommandLineTools/usr/bin/ranlib: file: debug/libarrow.a(ios.mm.o) has no symbols
/Library/Developer/CommandLineTools/usr/bin/ranlib: file: debug/libarrow.a(ios.mm.o) has no symbols
[235/235] Linking CXX static library debug/libparquet.a
[847/1482] Performing install step for 'arrow_ep'
-- Install configuration: "DEBUG"
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/lib/cmake/arrow/FindSnappy.cmake
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/lib/cmake/arrow/FindLz4.cmake
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/lib/cmake/arrow/Findzstd.cmake
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/lib/cmake/arrow/Findre2Alt.cmake
-- Up-to-date: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/config.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/share/doc/arrow/LICENSE.txt
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/share/doc/arrow/NOTICE.txt
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/share/doc/arrow/README.md
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/lib/libarrow.800.0.0.dylib
-- Up-to-date: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/lib/libarrow.800.dylib
-- Up-to-date: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/lib/libarrow.dylib
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/lib/libarrow.a
/Library/Developer/CommandLineTools/usr/bin/ranlib: file: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/lib/libarrow.a(ios.mm.o) has no symbols
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/lib/cmake/arrow/FindArrow.cmake
-- Up-to-date: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/lib/cmake/arrow/ArrowTargets.cmake
-- Up-to-date: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/lib/cmake/arrow/ArrowTargets-debug.cmake
-- Up-to-date: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/lib/cmake/arrow/ArrowConfig.cmake
-- Up-to-date: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/lib/cmake/arrow/ArrowConfigVersion.cmake
-- Up-to-date: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/lib/pkgconfig/arrow.pc
-- Up-to-date: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/lib/libarrow_bundled_dependencies.a
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/api.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/array.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/buffer.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/buffer_builder.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/builder.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/chunk_resolver.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/chunked_array.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/compare.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/config.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/datum.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/device.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/extension_type.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/memory_pool.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/memory_pool_test.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/pch.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/pretty_print.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/record_batch.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/result.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/scalar.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/sparse_tensor.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/status.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/stl.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/stl_allocator.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/stl_iterator.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/table.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/table_builder.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/tensor.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/type.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/type_fwd.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/type_traits.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/visit_array_inline.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/visit_data_inline.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/visit_scalar_inline.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/visit_type_inline.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/visitor.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/visitor_generate.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/lib/cmake/arrow/ArrowOptions.cmake
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/lib/cmake/arrow/arrow-config.cmake
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/testing/async_test_util.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/testing/builder.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/testing/executor_util.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/testing/extension_type.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/testing/future_util.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/testing/generator.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/testing/gtest_compat.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/testing/gtest_util.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/testing/json_integration.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/testing/matchers.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/testing/pch.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/testing/random.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/testing/uniform_real.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/testing/util.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/testing/visibility.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/array/array_base.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/array/array_binary.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/array/array_decimal.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/array/array_dict.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/array/array_nested.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/array/array_primitive.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/array/builder_adaptive.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/array/builder_base.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/array/builder_binary.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/array/builder_decimal.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/array/builder_dict.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/array/builder_nested.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/array/builder_primitive.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/array/builder_time.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/array/builder_union.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/array/concatenate.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/array/data.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/array/diff.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/array/util.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/array/validate.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/c/abi.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/c/bridge.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/c/helpers.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/io/api.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/io/buffered.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/io/caching.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/io/compressed.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/io/concurrency.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/io/file.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/io/hdfs.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/io/interfaces.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/io/memory.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/io/mman.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/io/slow.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/io/stdio.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/io/test_common.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/io/transform.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/io/type_fwd.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/tensor/converter.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/algorithm.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/align_util.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/aligned_storage.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/async_generator.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/async_util.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/atomic_shared_ptr.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/base64.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/basic_decimal.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/benchmark_util.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/bit_block_counter.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/bit_run_reader.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/bit_stream_utils.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/bit_util.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/bitmap.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/bitmap_builders.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/bitmap_generate.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/bitmap_ops.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/bitmap_reader.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/bitmap_visit.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/bitmap_writer.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/bitset_stack.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/bpacking.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/bpacking64_default.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/bpacking_avx2.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/bpacking_avx512.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/bpacking_default.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/bpacking_neon.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/bpacking_simd128_generated.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/bpacking_simd256_generated.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/bpacking_simd512_generated.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/byte_size.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/byte_stream_split.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/cancel.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/checked_cast.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/compare.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/compression.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/concurrent_map.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/converter.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/counting_semaphore.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/cpu_info.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/debug.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/decimal.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/delimiting.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/dispatch.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/double_conversion.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/endian.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/formatting.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/functional.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/future.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/future_iterator.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/hash_util.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/hashing.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/int_util.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/io_util.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/iterator.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/key_value_metadata.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/launder.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/logging.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/macros.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/make_unique.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/map.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/math_constants.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/memory.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/mutex.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/optional.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/parallel.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/pcg_random.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/print.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/queue.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/range.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/rle_encoding.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/simd.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/small_vector.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/sort.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/spaced.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/stopwatch.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/string.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/string_builder.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/string_view.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/task_group.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/tdigest.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/test_common.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/thread_pool.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/time.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/tracing.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/trie.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/type_fwd.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/type_traits.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/ubsan.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/unreachable.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/uri.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/utf8.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/value_parsing.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/variant.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/vector.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/visibility.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/windows_compatibility.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/util/windows_fixup.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/vendored/ProducerConsumerQueue.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/vendored/datetime.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/vendored/optional.hpp
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/vendored/string_view.hpp
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/vendored/strptime.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/vendored/xxhash.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/vendored/datetime/date.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/vendored/datetime/ios.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/vendored/datetime/tz.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/vendored/datetime/tz_private.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/vendored/datetime/visibility.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/vendored/double-conversion/bignum-dtoa.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/vendored/double-conversion/bignum.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/vendored/double-conversion/cached-powers.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/vendored/double-conversion/diy-fp.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/vendored/double-conversion/double-conversion.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/vendored/double-conversion/fast-dtoa.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/vendored/double-conversion/fixed-dtoa.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/vendored/double-conversion/ieee.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/vendored/double-conversion/strtod.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/vendored/double-conversion/utils.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/vendored/pcg/pcg_extras.hpp
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/vendored/pcg/pcg_random.hpp
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/vendored/pcg/pcg_uint128.hpp
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/compute/api.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/compute/api_aggregate.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/compute/api_scalar.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/compute/api_vector.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/compute/cast.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/compute/exec.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/compute/function.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/compute/kernel.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/compute/light_array.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/compute/registry.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/compute/type_fwd.h
-- Up-to-date: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/lib/pkgconfig/arrow-compute.pc
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/compute/exec/bloom_filter.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/compute/exec/exec_plan.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/compute/exec/expression.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/compute/exec/hash_join.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/compute/exec/hash_join_dict.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/compute/exec/ir_consumer.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/compute/exec/key_compare.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/compute/exec/key_encode.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/compute/exec/key_hash.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/compute/exec/key_map.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/compute/exec/options.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/compute/exec/order_by_impl.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/compute/exec/partition_util.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/compute/exec/schema_util.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/compute/exec/task_util.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/compute/exec/test_util.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/compute/exec/tpch_node.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/compute/exec/util.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/ipc/api.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/ipc/dictionary.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/ipc/feather.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/ipc/json_simple.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/ipc/message.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/ipc/options.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/ipc/reader.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/ipc/test_common.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/ipc/type_fwd.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/ipc/util.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/arrow/ipc/writer.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/lib/libparquet.800.0.0.dylib
-- Up-to-date: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/lib/libparquet.800.dylib
-- Up-to-date: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/lib/libparquet.dylib
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/lib/libparquet.a
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/lib/cmake/arrow/FindParquet.cmake
-- Up-to-date: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/lib/cmake/arrow/ParquetTargets.cmake
-- Up-to-date: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/lib/cmake/arrow/ParquetTargets-debug.cmake
-- Up-to-date: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/lib/cmake/arrow/ParquetConfig.cmake
-- Up-to-date: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/lib/cmake/arrow/ParquetConfigVersion.cmake
-- Up-to-date: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/lib/pkgconfig/parquet.pc
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/parquet/bloom_filter.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/parquet/column_page.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/parquet/column_reader.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/parquet/column_scanner.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/parquet/column_writer.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/parquet/encoding.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/parquet/exception.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/parquet/file_reader.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/parquet/file_writer.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/parquet/hasher.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/parquet/level_comparison.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/parquet/level_comparison_inc.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/parquet/level_conversion.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/parquet/level_conversion_inc.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/parquet/metadata.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/parquet/murmur3.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/parquet/pch.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/parquet/platform.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/parquet/printer.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/parquet/properties.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/parquet/schema.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/parquet/statistics.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/parquet/stream_reader.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/parquet/stream_writer.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/parquet/test_util.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/parquet/type_fwd.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/parquet/types.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/parquet/windows_compatibility.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/parquet/windows_fixup.h
-- Up-to-date: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/parquet/parquet_version.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/parquet/api/io.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/parquet/api/reader.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/parquet/api/schema.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/parquet/api/writer.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/parquet/arrow/reader.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/parquet/arrow/schema.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/parquet/arrow/test_util.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/parquet/arrow/writer.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/parquet/encryption/crypto_factory.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/parquet/encryption/encryption.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/parquet/encryption/file_key_material_store.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/parquet/encryption/file_key_unwrapper.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/parquet/encryption/file_key_wrapper.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/parquet/encryption/key_encryption_key.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/parquet/encryption/key_material.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/parquet/encryption/key_metadata.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/parquet/encryption/key_toolkit.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/parquet/encryption/kms_client.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/parquet/encryption/kms_client_factory.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/parquet/encryption/local_wrap_kms_client.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/parquet/encryption/test_encryption_util.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/parquet/encryption/test_in_memory_kms.h
-- Installing: /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include/parquet/encryption/two_level_cache_with_expiration.h
[1099/1482] Building CXX object velox/dwio/common/tests/CMakeFiles/velox_dwio_common_bitpack_decoder_benchmark.dir/BitPackDecoderBenchmark.cpp.o
In file included from /Users/yingsu/repo/velox6/velox/velox/dwio/common/tests/BitPackDecoderBenchmark.cpp:26:
/Users/yingsu/repo/velox6/velox/./velox/external/duckdb/parquet-amalgamation.hpp:475:19: warning: 'iterator<std::forward_iterator_tag, std::pair<int, const char *>>' is deprecated [-Wdeprecated-declarations]
: public std::iterator<std::forward_iterator_tag, std::pair<int, const char*> > {
^
/Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/usr/include/c++/v1/__iterator/iterator.h:27:29: note: 'iterator<std::forward_iterator_tag, std::pair<int, const char *>>' has been explicitly marked deprecated here
struct _LIBCPP_TEMPLATE_VIS _LIBCPP_DEPRECATED_IN_CXX17 iterator
^
/Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/usr/include/c++/v1/__config:1066:39: note: expanded from macro '_LIBCPP_DEPRECATED_IN_CXX17'
# define _LIBCPP_DEPRECATED_IN_CXX17 _LIBCPP_DEPRECATED
^
/Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/usr/include/c++/v1/__config:1043:48: note: expanded from macro '_LIBCPP_DEPRECATED'
# define _LIBCPP_DEPRECATED __attribute__ ((deprecated))
^
1 warning generated.
[1155/1482] Building CXX object velox/dwio/parquet/thrift/CMakeFiles/velox_dwio_parquet_thrift.dir/ParquetThriftTypes.cpp.o
FAILED: velox/dwio/parquet/thrift/CMakeFiles/velox_dwio_parquet_thrift.dir/ParquetThriftTypes.cpp.o
/usr/local/bin/ccache /Library/Developer/CommandLineTools/usr/bin/c++ -DFOLLY_HAVE_INT128_T=1 -DVELOX_ENABLE_PARQUET -I/Users/yingsu/repo/velox6/velox/cmake-build-debug/_deps/protobuf-src/src -I/Users/yingsu/repo/velox6/velox/. -I/Users/yingsu/repo/velox6/velox/velox/external/xxhash -isystem /Users/yingsu/repo/velox6/velox/velox -isystem /Users/yingsu/repo/velox6/velox/velox/external -isystem /Users/yingsu/repo/velox6/velox/velox/external/duckdb -isystem /Users/yingsu/repo/velox6/velox/velox/external/duckdb/tpch/dbgen/include -isystem /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/install/include -isystem /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/src/arrow_ep-build/thrift_ep-install/include -mavx2 -mfma -mavx -mf16c -mlzcnt -std=c++17 -mbmi2 -fvisibility=hidden -fvisibility-inlines-hidden -D USE_VELOX_COMMON_BASE -D HAS_UNCAUGHT_EXCEPTIONS -Wall -Wextra -Wno-unused -Wno-unused-parameter -Wno-sign-compare -Wno-ignored-qualifiers -Wno-range-loop-analysis -Wno-mismatched-tags -Wno-nullability-completeness -g -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk -fPIC -fcolor-diagnostics -std=gnu++17 -MD -MT velox/dwio/parquet/thrift/CMakeFiles/velox_dwio_parquet_thrift.dir/ParquetThriftTypes.cpp.o -MF velox/dwio/parquet/thrift/CMakeFiles/velox_dwio_parquet_thrift.dir/ParquetThriftTypes.cpp.o.d -o velox/dwio/parquet/thrift/CMakeFiles/velox_dwio_parquet_thrift.dir/ParquetThriftTypes.cpp.o -c /Users/yingsu/repo/velox6/velox/velox/dwio/parquet/thrift/ParquetThriftTypes.cpp
In file included from /Users/yingsu/repo/velox6/velox/velox/dwio/parquet/thrift/ParquetThriftTypes.cpp:23:
In file included from /Users/yingsu/repo/velox6/velox/velox/dwio/parquet/thrift/ParquetThriftTypes.h:26:
In file included from /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/src/arrow_ep-build/thrift_ep-install/include/thrift/TBase.h:24:
In file included from /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/src/arrow_ep-build/thrift_ep-install/include/thrift/protocol/TProtocol.h:28:
In file included from /Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/src/arrow_ep-build/thrift_ep-install/include/thrift/transport/TTransport.h:24:
/Users/yingsu/repo/velox6/velox/cmake-build-debug/third_party/arrow_ep/src/arrow_ep-build/thrift_ep-install/include/thrift/transport/TTransportException.h:23:10: fatal error: 'boost/numeric/conversion/cast.hpp' file not found
#include <boost/numeric/conversion/cast.hpp>
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1 error generated.
[1168/1482] Building CXX object velox/row/tests/CMakeFiles/velox_row_test.dir/CompactRowTest.cpp.o
ninja: build stopped: subcommand failed.
cc @kgpai
Problem description
On a newly cloned Velox repo, setup-macos.sh and make finished successfully. However, when using Clion to build velox_hive_connector_test, I got the following error:
To reproduce
Draft PR https://github.com/facebookincubator/velox/pull/5764 fixes this issue.
System information
CMAKE version
Velox System Info v0.0.2 Commit: 715e72ed42b4395bb5be708d98a72f0b5497ae03 CMake Version: 3.27.0 System: Darwin-22.5.0 Arch: x86_64 C++ Compiler: /Library/Developer/CommandLineTools/usr/bin/c++ C++ Compiler Version: 14.0.0.14000029 C Compiler: /Library/Developer/CommandLineTools/usr/bin/cc C Compiler Version: 14.0.0.14000029 CMake Prefix Path: /Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/usr;/usr/local;/usr;/;/usr/local/Cellar/cmake/3.27.0;/usr/local;/usr/X11R6;/usr/pkg;/opt;/sw;/opt/local
CMake log
No response