How to remove the Xcode warning Apple Mach-O Linker Warning ‘Pointer not aligned at address

It probably means their binary file has non-aligned pointer when they compile their code. In those cases the alignment basically defaults to 1 byte and hypothetically might impact performance.
After updating to Xcode 8.3 public release I am still seeing this error, so Google might need to compile their static library with different settings to make it go away.

Leave a Comment