fornwall commented on PR #4506: URL: https://github.com/apache/arrow-adbc/pull/4506#issuecomment-4963079994
The `fmt` -> `std::format` transition seems to require statically linking `libstdc++` on ubuntu jammy (22.04): - https://github.com/apache/arrow-adbc/pull/4506/changes/f55adf3c0524ef5b791e2a81e4547a327d1a6a40 That is a unfortunate.. Let me know what you think about this PR: 1. Drop it for now. 2. Go for the `C++20` transition, but not do the `fmt` -> `std::format` transition now (avoids statically linking with `libstd++` on ubuntu 22.04). 3. Do both `C++20` and `fmt` -> `std::format`, dropping support for ubuntu 22.04 (EOL: [2027-04](https://endoflife.date/ubuntu)). 4. Do both `C++20` and `fmt` -> `std::format`, using a statically linked `libstdc++` for jammy. -- 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]
