Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

I have a slight issue when build my Xcode project, get tones of warning after update pod. It looks like this

enter image description here

Already search the whole site here but still no luck. it doesn't affect the project but it is quite annoying. Anyone could help?

like image 628
Alexander Huang Avatar asked Feb 16 '17 08:02

Alexander Huang


3 Answers

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.

like image 114
tzm41 Avatar answered Oct 16 '22 23:10

tzm41


Got this response from firebase support:

This is a known issue with Xcode 8.3 beta, so it might be a beta thing and Xcode being extra verbose. It works well though with 8.2.1 so I recommend temporarily use it to avoid the warnings or ignore the warnings on 8.3 beta if it does not affect your app.

like image 29
kball Avatar answered Oct 16 '22 23:10

kball


This has been fixed in Firebase 3.16.0 (Firebase Core 3.6 + Firebase Analytics 3.8.0)

like image 6
adbitx Avatar answered Oct 16 '22 22:10

adbitx