nealrichardson commented on pull request #8304: URL: https://github.com/apache/arrow/pull/8304#issuecomment-702239836
The latest R failures from the CentOS 7 builds are compiler warnings being converted to errors in the awssdk_ep. As it turns out, [aws-sdk-cpp requires gcc >= 4.9](https://github.com/aws/aws-sdk-cpp#minimum-requirements), and these builds are on 4.8. So somewhere we're going to need to add a `if(CMAKE_CXX_COMPILER_ID STREQUAL "GNU" AND CMAKE_CXX_COMPILER_VERSION VERSION_LESS "4.9")` check. ---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: [email protected]
