Starting from M140, I began seeing these undefined references inside WebRTC .a Android files:
libwebrtc.a:strerror.o: U __gnu_strerror_r
libwebrtc.a:system_error.o: U __gnu_strerror_
These symbols were not present in M139.
This is now breaking Android builds (in my case, x86_64):
This is now breaking Android builds (in my case, x86_64):
It looks like starting from M140, either Abseil or libc++ is pulling in the GNU-specific strerror_r variant, which Android’s libc doesn’t provide (or not for every architecture), causing the linker to fail.
Has anyone encountered this issue or knows if it’s related to a recent change in Abseil, libc++, or the Android toolchain inside WebRTC?