Framework fails to link in Xcode 10

My App uses a static framework "A" (built as a dependency) which itself uses a static framework "B". In Xcode 9 this built and worked fine. In Xcode 10 I get "Undefined symbols for architecture x86_64" followed by a list of symbols used in "A" defined in "B". However, nm shows the symbols are present in "A":

nm -m -arch x86_64 A | grep "<missing symbol>"

(undefined) external <missing symbol>


Why is this only failing in Xcode 10?

Replies

I have the same problem . Have you solved it yet. I found a way to try .this way help me.


https://stackoverflow.com/questions/52425640/framework-fails-to-link-in-xcode-10