kou opened a new issue, #37352: URL: https://github.com/apache/arrow/issues/37352
### Describe the bug, including details regarding any error messages, version, and platform. Amazon Linux 2023.1.20230809 updated `grpc-devel` to 1.56.2-10.amzn2023. It's `grpc.pc` has `Requires.private: re2`. And `re2.pc` has `Cflags: -std=c++11`. So `pkg-config --cflags arrow` returns `-std=c++17 ... -std=c++11 ...`: https://github.com/ursacomputing/crossbow/actions/runs/5948981682/job/16133840759#step:11:1476 ```text ++ pkg-config --cflags --libs arrow + c++ -std=c++17 -o arrow-example example.cc -DUTF8PROC_EXPORTS -I/usr/usr/include -std=c++11 -pthread -DNOMINMAX -DNOMINMAX -larrow ``` It causes a build error because `-std=c++11` is used instead of `-std=c++17`. ### Component(s) Packaging -- 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]
