Search code examples
objective-ciphonexcodeios9.3

ios9: Undefined symbols for architecture arm64


I had create framework that using chilkat library and it work fine, then I want to add iSMP.framework to my framework project, I just put .framework into project but it show error like this

enter image description here

is there any way to solve this problem ?


Solution

  • It looks as if the get_secret method might be calling a method from an external library/framework and that framework is not compiled for arm64. So you'd have to either get a copy of that framework compiled for arm64 or change the active architectures for your project to compile the app using the architectures supported by that library.