cyb70289 commented on code in PR #13244: URL: https://github.com/apache/arrow/pull/13244#discussion_r884452789
########## cpp/cmake_modules/ThirdpartyToolchain.cmake: ########## @@ -2231,16 +2231,24 @@ if((NOT ARROW_SIMD_LEVEL STREQUAL "NONE") OR (NOT ARROW_RUNTIME_SIMD_LEVEL STREQ else() set(ARROW_USE_XSIMD FALSE) endif() + +set(ARROW_XSIMD_REQUIRED_VERSION "8.1.0") + if(ARROW_USE_XSIMD) - set(xsimd_SOURCE "BUNDLED") - resolve_dependency(xsimd) + # Distros don't always provide up to date xsimd packages + set(xsimd_SOURCE "AUTO") Review Comment: I added it because some CI jobs set it to `SYSTEM`, IIRC asan/ubsan and trivis CI failed as we don't install xsimd, and distro provided xsimd version is too low. -- 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]
