In my current Swift project, I have a 3rd party static library, added through the Build Phases > "Link Binary With Libraries" section.
After updating to xcode 8.3, this library started throwing some linker warnings (e.g.: pointer not aligned at address 0x00000 from libraryFile.a)
As pointed out by other answers (https://mcmap.net/q/89422/-disable-warnings-in-xcode-from-frameworks and https://mcmap.net/q/88962/-in-xcode-how-to-suppress-all-warnings-in-specific-source-files), the compiler warnings could be ignored by adding a flag to the library code.
However, in my case, the libraries are static, and the warning are from the linker. Is there a way to disable linker warning from static 3rd party libraries on xcode?