llama90 opened a new issue, #37847:
URL: https://github.com/apache/arrow/issues/37847

   ### Describe the usage question you have. Please include as many useful 
details as  possible.
   
   
   # Overview
   
   Hello.
   
   I want to run the 
'[join_example.cc](https://github.com/apache/arrow/blob/main/cpp/examples/arrow/join_example.cc)'
 from the Arrow example using C++ build. When I build and execute the generated 
'join_example' binary, it works fine.
   
   By executing the binary, I was able to observe the following results:
   
   <details>
   <summary>result</summary>
   
   ```bash
   lkey,shared,ldistinct
   1,4,7
   2,5,8
   11,20,21
   3,6,9
   rkey,shared,rdistinct
   1,10,13
   124,10,11
   2,11,14
   3,12,15
   Results : lkey: int64
   shared_l: int64
   ldistinct: int64
   __fragment_index_l: int32
   __batch_index_l: int32
   __last_in_fragment_l: bool
   __filename_l: string
   rkey: int64
   shared_r: int64
   rdistinct: int64
   __fragment_index_r: int32
   __batch_index_r: int32
   __last_in_fragment_r: bool
   __filename_r: string
   ----
   lkey:
     [
       [
         1,
         2,
         3
       ]
     ]
   shared_l:
     [
       [
         4,
         5,
         6
       ]
     ]
   ldistinct:
     [
       [
         7,
         8,
         9
       ]
     ]
   __fragment_index_l:
     [
       [
         0,
         0,
         0
       ]
     ]
   __batch_index_l:
     [
       [
         0,
         0,
         0
       ]
     ]
   __last_in_fragment_l:
     [
       [
         true,
         true,
         true
       ]
     ]
   __filename_l:
     [
       [
         "in-memory",
         "in-memory",
         "in-memory"
       ]
     ]
   rkey:
     [
       [
         1,
         2,
         3
       ]
     ]
   shared_r:
     [
       [
         10,
         11,
         12
       ]
     ]
   rdistinct:
     [
       [
         13,
         14,
         15
       ]
     ]
   __fragment_index_r:
     [
       [
         0,
         0,
         0
       ]
     ]
   __batch_index_r:
     [
       [
         0,
         0,
         0
       ]
     ]
   __last_in_fragment_r:
     [
       [
         true,
         true,
         true
       ]
     ]
   __filename_r:
     [
       [
         "in-memory",
         "in-memory",
         "in-memory"
       ]
     ]
   ```
   
   </details>
   
   However, when I create a new project and generate code identical to 
'join_example.cc', specifying the library path created through the build, I 
encounter the following error.
   
   Considering that the code for reading and writing CSV or Parquet files is 
working, I suspect that some necessary components are missing during the 
library build.
   
   What should I change in order to be able to use the library generated by the 
build to run the program?
   
   Below is the error message and build environment.
   
   ### error message
   
   <details>
   <summary>error message</summary>
   
   ```
   c++ /Users/lama/workspace/arrow-packt-example/reproduce/join_example.cc 
-I/Users/lama/mambaforge/envs/arrow-latest/include 
-L/Users/lama/mambaforge/envs/arrow-latest/lib -larrow -std=c++17 -v -o 
join_example
   Apple clang version 14.0.3 (clang-1403.0.22.14.1)
   Target: arm64-apple-darwin22.6.0
   Thread model: posix
   InstalledDir: 
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
    
"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang"
 -cc1 -triple arm64-apple-macosx13.0.0 -Wundef-prefix=TARGET_OS_ 
-Wdeprecated-objc-isa-usage -Werror=deprecated-objc-isa-usage 
-Werror=implicit-function-declaration -emit-obj -mrelax-all 
--mrelax-relocations -disable-free -clear-ast-before-backend 
-disable-llvm-verifier -discard-value-names -main-file-name join_example.cc 
-mrelocation-model pic -pic-level 2 -mframe-pointer=non-leaf -fno-strict-return 
-ffp-contract=on -fno-rounding-math -funwind-tables=1 
-fobjc-msgsend-selector-stubs -target-sdk-version=13.3 
-fvisibility-inlines-hidden-static-local-var -target-cpu apple-m1 
-target-feature +v8.5a -target-feature +crc -target-feature +lse 
-target-feature +rdm -target-feature +crypto -target-feature +dotprod 
-target-feature +fp-armv8 -target-feature +neon -target-feature +fp16fml 
-target-feature +ras -target-feature +rcpc -target-feature +zcm -target-feature 
+zcz -target-feature +fullfp16 -t
 arget-feature +sm4 -target-feature +sha3 -target-feature +sha2 -target-feature 
+aes -target-abi darwinpcs -fallow-half-arguments-and-returns -mllvm 
-treat-scalable-fixed-error-as-warning -debugger-tuning=lldb 
-target-linker-version 857.1 -v 
-fcoverage-compilation-dir=/Users/lama/workspace/arrow-packt-example 
-resource-dir 
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/14.0.3
 -isysroot 
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk
 -I /Users/lama/mambaforge/envs/arrow-latest/include -I/usr/local/include 
-stdlib=libc++ -internal-isystem 
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/c++/v1
 -internal-isystem 
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/local/include
 -internal-isystem 
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/14.0.3
 /include -internal-externc-isystem 
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include
 -internal-externc-isystem 
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include
 -Wno-reorder-init-list -Wno-implicit-int-float-conversion -Wno-c99-designator 
-Wno-final-dtor-non-final-class -Wno-extra-semi-stmt 
-Wno-misleading-indentation -Wno-quoted-include-in-framework-header 
-Wno-implicit-fallthrough -Wno-enum-enum-conversion -Wno-enum-float-conversion 
-Wno-elaborated-enum-base -Wno-reserved-identifier -Wno-gnu-folding-constant 
-std=c++17 -fdeprecated-macro 
-fdebug-compilation-dir=/Users/lama/workspace/arrow-packt-example -ferror-limit 
19 -stack-protector 1 -fstack-check -mdarwin-stkchk-strong-link -fblocks 
-fencode-extended-block-signature -fregister-global-dtors-with-atexit 
-fgnuc-version=4.2.1 -fno-cxx-modules -no-opaque-pointers -fcxx-exceptions 
-fexceptions -fmax-type-align=16 -fcommon -clang-vendor
 -feature=+disableNonDependentMemberExprInCurrentInstantiation 
-fno-odr-hash-protocols -clang-vendor-feature=+enableAggressiveVLAFolding 
-clang-vendor-feature=+revert09abecef7bbf 
-clang-vendor-feature=+thisNoAlignAttr -clang-vendor-feature=+thisNoNullAttr 
-mllvm -disable-aligned-alloc-awareness=1 -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o 
/var/folders/cp/mk09m76d0ws97l5r7k7vdjh40000gn/T/join_example-6d2c89.o -x c++ 
/Users/lama/workspace/arrow-packt-example/reproduce/join_example.cc
   clang -cc1 version 14.0.3 (clang-1403.0.22.14.1) default target 
arm64-apple-darwin22.6.0
   ignoring nonexistent directory "/usr/local/include"
   ignoring nonexistent directory 
"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/local/include"
   ignoring nonexistent directory 
"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/Library/Frameworks"
   #include "..." search starts here:
   #include <...> search starts here:
    /Users/lama/mambaforge/envs/arrow-latest/include
    
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/c++/v1
    
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/14.0.3/include
    
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include
    
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include
    
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks
 (framework directory)
   End of search list.
    
"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld"
 -demangle -lto_library 
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/libLTO.dylib
 -no_deduplicate -dynamic -arch arm64 -platform_version macos 13.0.0 13.3 
-syslibroot 
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk
 -o join_example -L/Users/lama/mambaforge/envs/arrow-latest/lib 
-L/usr/local/lib 
/var/folders/cp/mk09m76d0ws97l5r7k7vdjh40000gn/T/join_example-6d2c89.o -larrow 
-lc++ -lSystem 
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/14.0.3/lib/darwin/libclang_rt.osx.a
   Undefined symbols for architecture arm64:
     "arrow::acero::DeclarationToTable(arrow::acero::Declaration, bool, 
arrow::MemoryPool*, arrow::compute::FunctionRegistry*)", referenced from:
         DoHashJoin() in join_example-6d2c89.o
     
"arrow::dataset::InMemoryDataset::InMemoryDataset(std::__1::shared_ptr<arrow::Table>)",
 referenced from:
         std::__1::__shared_ptr_emplace<arrow::dataset::InMemoryDataset, 
std::__1::allocator<arrow::dataset::InMemoryDataset>>::__shared_ptr_emplace[abi:v15006]<std::__1::shared_ptr<arrow::Table>&>(std::__1::allocator<arrow::dataset::InMemoryDataset>,
 std::__1::shared_ptr<arrow::Table>&) in join_example-6d2c89.o
     "arrow::dataset::internal::Initialize()", referenced from:
         DoHashJoin() in join_example-6d2c89.o
   ld: symbol(s) not found for architecture arm64
   clang: error: linker command failed with exit code 1 (use -v to see 
invocation)
   ```
   
   </details>
   
   ### build environment
   
   1. I am using an ARM-based Mac.
   2. I configured the build environment using Mamba.
   3. Excluding some options that caused build errors, I performed the build as 
follows:
       ```bash
       cmake --preset ninja-debug-maximal cpp 
-DCMAKE_INSTALL_PREFIX=$ARROW_HOME -DCMAKE_INSTALL_LIBDIR=lib -DARROW_AZURE=OFF 
-DARROW_CUDA=OFF -DARROW_SKYHOOK=OFF -DARROW_GANDIVA=OFF 
-DARROW_DEPENDENCY_SOURCE=BUNDLED -DARROW_BUILD_STATIC=ON
       ```
   4. Below is the message that appears when executing the command in step 3.
       <details>
       <summary>result</summary>
       ```bash
       Preset CMake variables:
   
       ARROW_ACERO="ON"
       ARROW_BUILD_EXAMPLES="ON"
       ARROW_BUILD_INTEGRATION="ON"
       ARROW_BUILD_TESTS="ON"
       ARROW_BUILD_UTILITIES="ON"
       ARROW_COMPUTE="ON"
       ARROW_CSV="ON"
       ARROW_DATASET="ON"
       ARROW_EXTRA_ERROR_CONTEXT="ON"
       ARROW_FILESYSTEM="ON"
       ARROW_FLIGHT="ON"
       ARROW_FLIGHT_SQL="ON"
       ARROW_GCS="ON"
       ARROW_HDFS="ON"
       ARROW_JSON="ON"
       ARROW_MIMALLOC="ON"
       ARROW_ORC="ON"
       ARROW_PARQUET="ON"
       ARROW_S3="ON"
       ARROW_SUBSTRAIT="ON"
       ARROW_TENSORFLOW="ON"
       ARROW_WITH_BROTLI="ON"
       ARROW_WITH_BZ2="ON"
       ARROW_WITH_LZ4="ON"
       ARROW_WITH_RE2="ON"
       ARROW_WITH_SNAPPY="ON"
       ARROW_WITH_UTF8PROC="ON"
       ARROW_WITH_ZLIB="ON"
       ARROW_WITH_ZSTD="ON"
       CMAKE_BUILD_TYPE="Debug"
       CMAKE_EXPORT_COMPILE_COMMANDS="ON"
       PARQUET_BUILD_EXAMPLES="ON"
       PARQUET_BUILD_EXECUTABLES="ON"
       PARQUET_REQUIRE_ENCRYPTION="ON"
     
       -- Building using CMake version: 3.27.6
       -- Arrow version: 14.0.0 (full: '14.0.0-SNAPSHOT')
       -- Arrow SO version: 1400 (full: 1400.0.0)
       -- clang-tidy found at 
/Users/lama/mambaforge/envs/arrow-latest/bin/clang-tidy-14
       -- clang-format found at 
/Users/lama/mambaforge/envs/arrow-latest/bin/clang-format-14
       -- infer not found
       -- Using ccache: /Users/lama/mambaforge/envs/arrow-latest/bin/ccache
       -- Found cpplint executable at 
/Users/lama/workspace/arrow-latest/cpp/build-support/cpplint.py
       -- System processor: arm64
       -- Arrow build warning level: CHECKIN
       -- Build Type: DEBUG
       -- Using BUNDLED approach to find dependencies
       -- ARROW_ABSL_BUILD_VERSION: 20211102.0
       -- ARROW_ABSL_BUILD_SHA256_CHECKSUM: 
dcf71b9cba8dc0ca9940c4b316a0c796be8fab42b070bb6b7cab62b48f0e66c4
       -- ARROW_AWS_C_AUTH_BUILD_VERSION: v0.6.22
       -- ARROW_AWS_C_AUTH_BUILD_SHA256_CHECKSUM: 
691a6b4418afcd3dc141351b6ad33fccd8e3ff84df0e9e045b42295d284ee14c
       -- ARROW_AWS_C_CAL_BUILD_VERSION: v0.5.20
       -- ARROW_AWS_C_CAL_BUILD_SHA256_CHECKSUM: 
acc352359bd06f8597415c366cf4ec4f00d0b0da92d637039a73323dd55b6cd0
       -- ARROW_AWS_C_COMMON_BUILD_VERSION: v0.8.9
       -- ARROW_AWS_C_COMMON_BUILD_SHA256_CHECKSUM: 
2f3fbaf7c38eae5a00e2a816d09b81177f93529ae8ba1b82dc8f31407565327a
       -- ARROW_AWS_C_COMPRESSION_BUILD_VERSION: v0.2.16
       -- ARROW_AWS_C_COMPRESSION_BUILD_SHA256_CHECKSUM: 
044b1dbbca431a07bde8255ef9ec443c300fc60d4c9408d4b862f65e496687f4
       -- ARROW_AWS_C_EVENT_STREAM_BUILD_VERSION: v0.2.18
       -- ARROW_AWS_C_EVENT_STREAM_BUILD_SHA256_CHECKSUM: 
310ca617f713bf664e4c7485a3d42c1fb57813abd0107e49790d107def7cde4f
       -- ARROW_AWS_C_HTTP_BUILD_VERSION: v0.7.3
       -- ARROW_AWS_C_HTTP_BUILD_SHA256_CHECKSUM: 
07e16c6bf5eba6f0dea96b6f55eae312a7c95b736f4d2e4a210000f45d8265ae
       -- ARROW_AWS_C_IO_BUILD_VERSION: v0.13.14
       -- ARROW_AWS_C_IO_BUILD_SHA256_CHECKSUM: 
12b66510c3d9a4f7e9b714e9cfab2a5bf835f8b9ce2f909d20ae2a2128608c71
       -- ARROW_AWS_C_MQTT_BUILD_VERSION: v0.8.4
       -- ARROW_AWS_C_MQTT_BUILD_SHA256_CHECKSUM: 
232eeac63e72883d460c686a09b98cdd811d24579affac47c5c3f696f956773f
       -- ARROW_AWS_C_S3_BUILD_VERSION: v0.2.3
       -- ARROW_AWS_C_S3_BUILD_SHA256_CHECKSUM: 
a00b3c9f319cd1c9aa2c3fa15098864df94b066dcba0deaccbb3caa952d902fe
       -- ARROW_AWS_C_SDKUTILS_BUILD_VERSION: v0.1.6
       -- ARROW_AWS_C_SDKUTILS_BUILD_SHA256_CHECKSUM: 
8a2951344b2fb541eab1e9ca17c18a7fcbfd2aaff4cdd31d362d1fad96111b91
       -- ARROW_AWS_CHECKSUMS_BUILD_VERSION: v0.1.13
       -- ARROW_AWS_CHECKSUMS_BUILD_SHA256_CHECKSUM: 
0f897686f1963253c5069a0e495b85c31635ba146cd3ac38cc2ea31eaf54694d
       -- ARROW_AWS_CRT_CPP_BUILD_VERSION: v0.18.16
       -- ARROW_AWS_CRT_CPP_BUILD_SHA256_CHECKSUM: 
9e69bc1dc4b50871d1038aa9ff6ddeb4c9b28f7d6b5e5b1b69041ccf50a13483
       -- ARROW_AWS_LC_BUILD_VERSION: v1.3.0
       -- ARROW_AWS_LC_BUILD_SHA256_CHECKSUM: 
ae96a3567161552744fc0cae8b4d68ed88b1ec0f3d3c98700070115356da5a37
       -- ARROW_AWSSDK_BUILD_VERSION: 1.10.55
       -- ARROW_AWSSDK_BUILD_SHA256_CHECKSUM: 
2d552fb1a84bef4a9b65e34aa7031851ed2aef5319e02cc6e4cb735c48aa30de
       -- ARROW_AZURE_SDK_BUILD_VERSION: azure-core_1.10.2
       -- ARROW_AZURE_SDK_BUILD_SHA256_CHECKSUM: 
36557dae87de4cdd257d9b441d9a7f043290eae6666fb1065e0fa486ae3e58a0
       -- ARROW_BOOST_BUILD_VERSION: 1.81.0
       -- ARROW_BOOST_BUILD_SHA256_CHECKSUM: 
9e0ffae35528c35f90468997bc8d99500bf179cbae355415a89a600c38e13574
       -- 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.7.1
       -- ARROW_GBENCHMARK_BUILD_SHA256_CHECKSUM: 
6430e4092653380d9dc4ccb45a1e2dc9259d581f4866dc0759713126056bc1d7
       -- 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: v2.12.0
       -- ARROW_GOOGLE_CLOUD_CPP_BUILD_SHA256_CHECKSUM: 
8cda870803925c62de8716a765e03eb9d34249977e5cdb7d0d20367e997a55e2
       -- ARROW_GRPC_BUILD_VERSION: v1.46.3
       -- ARROW_GRPC_BUILD_SHA256_CHECKSUM: 
d6cbf22cb5007af71b61c6be316a79397469c58c82a942552a62e708bce60964
       -- ARROW_GTEST_BUILD_VERSION: 1.11.0
       -- ARROW_GTEST_BUILD_SHA256_CHECKSUM: 
b4870bf121ff7795ba20d20bcdd8627b8e088f2d1dab299a031c1034eddc93d5
       -- ARROW_JEMALLOC_BUILD_VERSION: 5.3.0
       -- ARROW_JEMALLOC_BUILD_SHA256_CHECKSUM: 
2db82d1e7119df3e71b7640219b6dfe84789bc0537983c3b7ac4f7189aecfeaa
       -- ARROW_LZ4_BUILD_VERSION: v1.9.4
       -- ARROW_LZ4_BUILD_SHA256_CHECKSUM: 
0b0e3aa07c8c063ddf40b082bdf7e37a1562bda40a0ff5272957f3e987e0e54b
       -- ARROW_MIMALLOC_BUILD_VERSION: v2.0.6
       -- ARROW_MIMALLOC_BUILD_SHA256_CHECKSUM: 
9f05c94cc2b017ed13698834ac2a3567b6339a8bde27640df5a1581d49d05ce5
       -- ARROW_NLOHMANN_JSON_BUILD_VERSION: v3.10.5
       -- ARROW_NLOHMANN_JSON_BUILD_SHA256_CHECKSUM: 
5daca6ca216495edf89d167f808d1d03c4a4d929cef7da5e10f135ae1540c7e4
       -- ARROW_OPENTELEMETRY_BUILD_VERSION: v1.8.1
       -- ARROW_OPENTELEMETRY_BUILD_SHA256_CHECKSUM: 
3d640201594b07f08dade9cd1017bd0b59674daca26223b560b9bb6bf56264c2
       -- ARROW_OPENTELEMETRY_PROTO_BUILD_VERSION: v0.17.0
       -- ARROW_OPENTELEMETRY_PROTO_BUILD_SHA256_CHECKSUM: 
f269fbcb30e17b03caa1decd231ce826e59d7651c0f71c3b28eb5140b4bb5412
       -- ARROW_ORC_BUILD_VERSION: 1.9.0
       -- ARROW_ORC_BUILD_SHA256_CHECKSUM: 
0dca8bbccdb2ee87e59ba964933436beebd02ea78c4134424828a8127fbc4faa
       -- ARROW_PROTOBUF_BUILD_VERSION: v21.3
       -- ARROW_PROTOBUF_BUILD_SHA256_CHECKSUM: 
2f723218f6cb709ae4cdc4fb5ed56a5951fc5d466f0128ce4c946b8c78c8c49f
       -- ARROW_RAPIDJSON_BUILD_VERSION: 
232389d4f1012dddec4ef84861face2d2ba85709
       -- ARROW_RAPIDJSON_BUILD_SHA256_CHECKSUM: 
b9290a9a6d444c8e049bd589ab804e0ccf2b05dc5984a19ed5ae75d090064806
       -- ARROW_RE2_BUILD_VERSION: 2022-06-01
       -- ARROW_RE2_BUILD_SHA256_CHECKSUM: 
f89c61410a072e5cbcf8c27e3a778da7d6fd2f2b5b1445cd4f4508bee946ab0f
       -- ARROW_SNAPPY_BUILD_VERSION: 1.1.9
       -- ARROW_SNAPPY_BUILD_SHA256_CHECKSUM: 
75c1fbb3d618dd3a0483bff0e26d0a92b495bbe5059c8b4f1c962b478b6e06e7
       -- ARROW_SUBSTRAIT_BUILD_VERSION: v0.27.0
       -- ARROW_SUBSTRAIT_BUILD_SHA256_CHECKSUM: 
4ed375f69d972a57fdc5ec406c17003a111831d8640d3f1733eccd4b3ff45628
       -- ARROW_S2N_TLS_BUILD_VERSION: v1.3.35
       -- ARROW_S2N_TLS_BUILD_SHA256_CHECKSUM: 
9d32b26e6bfcc058d98248bf8fc231537e347395dd89cf62bb432b55c5da990d
       -- ARROW_THRIFT_BUILD_VERSION: 0.16.0
       -- ARROW_THRIFT_BUILD_SHA256_CHECKSUM: 
f460b5c1ca30d8918ff95ea3eb6291b3951cf518553566088f3f2be8981f6209
       -- ARROW_UCX_BUILD_VERSION: 1.12.1
       -- ARROW_UCX_BUILD_SHA256_CHECKSUM: 
9bef31aed0e28bf1973d28d74d9ac4f8926c43ca3b7010bd22a084e164e31b71
       -- ARROW_UTF8PROC_BUILD_VERSION: v2.7.0
       -- ARROW_UTF8PROC_BUILD_SHA256_CHECKSUM: 
4bb121e297293c0fd55f08f83afab6d35d48f0af4ecc07523ad8ec99aa2b12a1
       -- ARROW_XSIMD_BUILD_VERSION: 9.0.1
       -- ARROW_XSIMD_BUILD_SHA256_CHECKSUM: 
b1bb5f92167fd3a4f25749db0be7e61ed37e0a5d943490f3accdcd2cd2918cc0
       -- ARROW_ZLIB_BUILD_VERSION: 1.2.13
       -- ARROW_ZLIB_BUILD_SHA256_CHECKSUM: 
b3a24de97a8fdbc835b9833169501030b8977031bcb54b3b3ac13740f846ab30
       -- ARROW_ZSTD_BUILD_VERSION: 1.5.5
       -- ARROW_ZSTD_BUILD_SHA256_CHECKSUM: 
9c4396cc829cfae319a6e2615202e82aad41372073482fce286fac78646d3ee4
       -- Added static library dependency Boost::system: 
/Users/lama/workspace/arrow-latest/boost_ep-prefix/src/boost_ep/stage/lib/libboost_system.a
       -- Added static library dependency Boost::filesystem: 
/Users/lama/workspace/arrow-latest/boost_ep-prefix/src/boost_ep/stage/lib/libboost_filesystem.a
       -- Boost include dir:
       -- Building snappy from source
       -- Building brotli from source
       -- Providing CMake module for OpenSSLAlt as part of Arrow CMake package
       -- Found OpenSSL Crypto Library: 
/Users/lama/mambaforge/envs/arrow-latest/lib/libcrypto.dylib
       -- Building with OpenSSL (Version: 3.1.3) support
       -- Building gflags from source
       -- Added static library dependency gflags::gflags_static: 
/Users/lama/workspace/arrow-latest/gflags_ep-prefix/src/gflags_ep/lib/libgflags_debug.a
       -- Building Apache Thrift from source
       -- Building Protocol Buffers from source
       -- Found protoc: 
/Users/lama/workspace/arrow-latest/protobuf_ep-install/bin/protoc
       -- Building Substrait from source
       -- Building jemalloc from source
       -- Building (vendored) mimalloc from source
       -- Building gtest from source
       CMake Deprecation Warning at 
/Users/lama/workspace/arrow-latest/_deps/googletest-src/CMakeLists.txt:4 
(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 
/Users/lama/workspace/arrow-latest/_deps/googletest-src/googlemock/CMakeLists.txt:45
 (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 
/Users/lama/workspace/arrow-latest/_deps/googletest-src/googletest/CMakeLists.txt:56
 (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.
       
     
       -- Building RapidJSON from source
       -- Building xsimd from source
       -- Building ZLIB from source
       -- Building LZ4 from source
       -- Building Zstandard from source
       -- Building RE2 from source
       -- Building BZip2 from source
       -- Building utf8proc from source
       -- Building c-ares from source
       -- Building Abseil-cpp from source
       -- Building gRPC from source
       -- Building nlohmann-json from source
       -- Found nlohmann_json headers: 
/Users/lama/workspace/arrow-latest/nlohmann_json_ep-install/include
       -- Building google-cloud-cpp from source
       -- Only building the google-cloud-cpp::storage component
       -- Building crc32c from source
       -- Found google-cloud-cpp::storage headers: 
/Users/lama/workspace/arrow-latest/google_cloud_cpp_ep-install/include
       -- Found hdfs.h at: 
/Users/lama/workspace/arrow-latest/cpp/thirdparty/hadoop/include/hdfs.h
       -- Building Apache ORC from source
       -- Found ORC static library: 
/Users/lama/workspace/arrow-latest/orc_ep-install/lib/liborc.a
       -- Found ORC headers: 
/Users/lama/workspace/arrow-latest/orc_ep-install/include
       -- Building AWS C++ SDK from source
       -- Found AWS SDK headers: 
/Users/lama/workspace/arrow-latest/awssdk_ep-install/include
       -- Found AWS SDK libraries: 
aws-cpp-sdk-identity-management;aws-cpp-sdk-sts;aws-cpp-sdk-cognito-identity;aws-cpp-sdk-s3;aws-cpp-sdk-core;AWS::aws-crt-cpp;AWS::aws-c-s3;AWS::aws-c-auth;AWS::aws-c-mqtt;AWS::aws-c-http;AWS::aws-c-compression;AWS::aws-c-sdkutils;AWS::aws-c-event-stream;AWS::aws-c-io;AWS::aws-c-cal;AWS::aws-checksums;AWS::aws-c-common
       -- All bundled static libraries: 
Snappy::snappy-static;Brotli::brotlicommon;Brotli::brotlienc;Brotli::brotlidec;gflags::gflags_static;thrift::thrift;arrow::protobuf::libprotobuf;substrait;jemalloc::jemalloc;mimalloc::mimalloc;ZLIB::ZLIB;LZ4::lz4;zstd::libzstd_static;re2::re2;BZip2::BZip2;utf8proc::utf8proc;c-ares::cares;gRPC::address_sorting;gRPC::gpr;gRPC::grpc;gRPC::grpcpp_for_bundling;gRPC::upb;absl::raw_hash_set;absl::hashtablez_sampler;absl::hash;absl::city;absl::low_level_hash;absl::random_distributions;absl::random_seed_sequences;absl::random_internal_pool_urbg;absl::random_internal_randen;absl::random_internal_randen_hwaes;absl::random_internal_randen_hwaes_impl;absl::random_internal_randen_slow;absl::random_internal_platform;absl::random_internal_seed_material;absl::random_seed_gen_exception;absl::statusor;absl::status;absl::cord;absl::cordz_info;absl::cord_internal;absl::cordz_functions;absl::exponential_biased;absl::cordz_handle;absl::bad_optional_access;absl::str_f
 
ormat_internal;absl::synchronization;absl::graphcycles_internal;absl::stacktrace;absl::symbolize;absl::debugging_internal;absl::demangle_internal;absl::malloc_internal;absl::time;absl::civil_time;absl::strings;absl::strings_internal;absl::base;absl::spinlock_wait;absl::int128;absl::throw_delegate;absl::time_zone;absl::bad_variant_access;absl::raw_logging_internal;absl::log_severity;google-cloud-cpp::storage;google-cloud-cpp::rest-internal;google-cloud-cpp::common;absl::bad_optional_access;absl::bad_variant_access;absl::base;absl::civil_time;absl::cord;absl::cord_internal;absl::cordz_functions;absl::cordz_info;absl::cordz_handle;absl::debugging_internal;absl::demangle_internal;absl::exponential_biased;absl::int128;absl::log_severity;absl::malloc_internal;absl::raw_logging_internal;absl::spinlock_wait;absl::stacktrace;absl::str_format_internal;absl::strings;absl::strings_internal;absl::symbolize;absl::synchronization;absl::throw_delegate;absl::time;absl::time_zone;Crc32c::crc32c;orc::
 
liborc;aws-cpp-sdk-identity-management;aws-cpp-sdk-sts;aws-cpp-sdk-cognito-identity;aws-cpp-sdk-s3;aws-cpp-sdk-core;AWS::aws-crt-cpp;AWS::aws-c-s3;AWS::aws-c-auth;AWS::aws-c-mqtt;AWS::aws-c-http;AWS::aws-c-compression;AWS::aws-c-sdkutils;AWS::aws-c-event-stream;AWS::aws-c-io;AWS::aws-c-cal;AWS::aws-checksums;AWS::aws-c-common
       -- CMAKE_C_FLAGS: -ftree-vectorize -fPIC -fPIE -fstack-protector-strong 
-O2 -pipe -isystem /Users/lama/mambaforge/envs/arrow-latest/include 
-Qunused-arguments  -Wall -Wextra -Wdocumentation -Wshorten-64-to-32 
-Wno-missing-braces -Wno-unused-parameter -Wno-constant-logical-operand 
-Wno-return-stack-address -Wdate-time -Wno-unknown-warning-option 
-Wno-pass-failed -march=armv8-a
       -- CMAKE_CXX_FLAGS:  -fno-aligned-new  -Qunused-arguments 
-fcolor-diagnostics  -Wall -Wextra -Wdocumentation -Wshorten-64-to-32 
-Wno-missing-braces -Wno-unused-parameter -Wno-constant-logical-operand 
-Wno-return-stack-address -Wdate-time -Wno-unknown-warning-option 
-Wno-pass-failed -march=armv8-a
       -- CMAKE_C_FLAGS_DEBUG: -g -Werror -O0 -ggdb
       -- CMAKE_CXX_FLAGS_DEBUG: -g -Werror -O0 -ggdb
       -- Creating bundled static library target arrow_bundled_dependencies at 
/Users/lama/workspace/arrow-latest/debug/libarrow_bundled_dependencies.a
       -- Linking Arrow Flight tests statically due to static Protobuf
       -- Linking Arrow Flight tests statically due to static gRPC
       -- ---------------------------------------------------------------------
       -- Arrow version:                                 14.0.0-SNAPSHOT
       --
       -- Build configuration summary:
       --   Generator: Ninja
       --   Build type: DEBUG
       --   Source directory: /Users/lama/workspace/arrow-latest/cpp
       --   Install prefix: /Users/lama/mambaforge/envs/arrow-latest
       --   Compile commands: 
/Users/lama/workspace/arrow-latest/compile_commands.json
       --
       -- 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=772a01c080ad57eb11e9323f5347472b769d45de [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_POSITION_INDEPENDENT_CODE=ON [default=ON]
       --       Whether to create position-independent target
       --   ARROW_USE_CCACHE=ON [default=ON]
       --       Use ccache when compiling (if available)
       --   ARROW_USE_SCCACHE=ON [default=ON]
       --       Use sccache when compiling (if available),
       --       takes precedence over ccache if a storage backend is configured
       --   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=NEON 
[default=DEFAULT|NONE|SSE4_2|AVX2|AVX512|NEON|SVE|SVE128|SVE256|SVE512]
       --       Compile-time SIMD optimization level
       --   ARROW_RUNTIME_SIMD_LEVEL=MAX [default=MAX|NONE|SSE4_2|AVX2|AVX512]
       --       Max runtime SIMD optimization level
       --   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
       --   ARROW_WITH_MUSL=OFF [default=OFF]
       --       Whether the system libc is musl or not
       --   ARROW_ENABLE_THREADING=ON [default=ON]
       --       Enable threading in Arrow core
       --
       -- Test and benchmark options:
       --
       --   ARROW_BUILD_EXAMPLES=ON [default=OFF]
       --       Build the Arrow examples
       --   ARROW_BUILD_TESTS=ON [default=OFF]
       --       Build the Arrow googletest unit tests
       --   ARROW_ENABLE_TIMING_TESTS=ON [default=ON]
       --       Enable timing-sensitive tests
       --   ARROW_BUILD_INTEGRATION=ON [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_ACERO=ON [default=OFF]
       --       Build the Arrow Acero Engine Module
       --   ARROW_AZURE=OFF [default=OFF]
       --       Build Arrow with Azure support (requires the Azure SDK for C++)
       --   ARROW_BUILD_UTILITIES=ON [default=OFF]
       --       Build Arrow commandline utilities
       --   ARROW_COMPUTE=ON [default=OFF]
       --       Build all Arrow Compute kernels
       --   ARROW_CSV=ON [default=OFF]
       --       Build the Arrow CSV Parser Module
       --   ARROW_CUDA=OFF [default=OFF]
       --       Build the Arrow CUDA extensions (requires CUDA toolkit)
       --   ARROW_DATASET=ON [default=OFF]
       --       Build the Arrow Dataset Modules
       --   ARROW_FILESYSTEM=ON [default=OFF]
       --       Build the Arrow Filesystem Layer
       --   ARROW_FLIGHT=ON [default=OFF]
       --       Build the Arrow Flight RPC System (requires GRPC, Protocol 
Buffers)
       --   ARROW_FLIGHT_SQL=ON [default=OFF]
       --       Build the Arrow Flight SQL extension
       --   ARROW_GANDIVA=OFF [default=OFF]
       --       Build the Gandiva libraries
       --   ARROW_GCS=ON [default=OFF]
       --       Build Arrow with GCS support (requires the GCloud SDK for C++)
       --   ARROW_HDFS=ON [default=OFF]
       --       Build the Arrow HDFS bridge
       --   ARROW_IPC=ON [default=ON]
       --       Build the Arrow IPC extensions
       --   ARROW_JEMALLOC=ON [default=ON]
       --       Build the Arrow jemalloc-based allocator
       --   ARROW_JSON=ON [default=OFF]
       --       Build Arrow with JSON support (requires RapidJSON)
       --   ARROW_MIMALLOC=ON [default=OFF]
       --       Build the Arrow mimalloc-based allocator
       --   ARROW_PARQUET=ON [default=OFF]
       --       Build the Parquet libraries
       --   ARROW_ORC=ON [default=OFF]
       --       Build the Arrow ORC adapter
       --   ARROW_PYTHON=OFF [default=OFF]
       --       Build some components needed by PyArrow.
       --       (This is a deprecated option. Use CMake presets instead.)
       --   ARROW_S3=ON [default=OFF]
       --       Build Arrow with S3 support (requires the AWS SDK for C++)
       --   ARROW_SKYHOOK=OFF [default=OFF]
       --       Build the Skyhook libraries
       --   ARROW_SUBSTRAIT=ON [default=OFF]
       --       Build the Arrow Substrait Consumer Module
       --   ARROW_TENSORFLOW=ON [default=OFF]
       --       Build Arrow with TensorFlow support enabled
       --   ARROW_TESTING=ON [default=OFF]
       --       Build the Arrow testing libraries
       --
       -- Thirdparty toolchain options:
       --
       --   ARROW_DEPENDENCY_SOURCE=BUNDLED 
[default=CONDA|AUTO|BUNDLED|SYSTEM|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=OFF [default=ON]
       --       Rely on gRPC shared libraries where relevant
       --   ARROW_JEMALLOC_USE_SHARED=OFF [default=ON]
       --       Rely on jemalloc shared libraries where relevant
       --   ARROW_LLVM_USE_SHARED=ON [default=ON]
       --       Rely on LLVM 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_SNAPPY_USE_SHARED=ON [default=ON]
       --       Rely on snappy 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_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=ON [default=OFF]
       --       Build with Brotli compression
       --   ARROW_WITH_BZ2=ON [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=ON [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=ON [default=OFF]
       --       Build the Parquet executable CLI tools. Requires static 
libraries to be built.
       --   PARQUET_BUILD_EXAMPLES=ON [default=OFF]
       --       Build the Parquet examples. Requires static libraries to be 
built.
       --   PARQUET_REQUIRE_ENCRYPTION=ON [default=OFF]
       --       Build support for encryption. Fail if OpenSSL is not found
       --
       -- Gandiva options:
       --
       --   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=ON [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
       --   ARROW_GDB_INSTALL_DIR="" [default=""]
       --       Use a custom install directory for GDB plugin.
       --       In general, you don't need to specify this because the default
       --       (CMAKE_INSTALL_FULL_BINDIR on Windows, 
CMAKE_INSTALL_FULL_LIBDIR otherwise)
       --       is reasonable.
       --   Outputting build configuration summary to 
/Users/lama/workspace/arrow-latest/cmake_summary.json
       -- Configuring done (2.0s)
       -- Generating done (0.5s)
       -- Build files have been written to: /Users/lama/workspace/arrow-latest
       ```
       </details>
   
   
   
   ### Component(s)
   
   C++


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to