``` $ rustc -Vv rustc 1.64.0-nightly (93ffde6f0 2022-07-23) binary: rustc commit-hash: 93ffde6f04d3d24327a4e17a2a2bf4f63c246235 commit-date: 2022-07-23 host: aarch64-apple-darwin release: 1.64.0-nightly LLVM version: 14.0.6 $ cat main.rs fn main() {} $ rustc main.rs $ otool -L main main: /usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current version 1292.100.5) /usr/lib/libresolv.9.dylib (compatibility version 1.0.0, current version 1.0.0) /usr/lib/libiconv.2.dylib (compatibility version 7.0.0, current version 7.0.0) ``` The `libc` version in this compiler's `std` is 0.2.126, which includes #2150, which *should* have fixed this.