0

I'm pretty new to Xcode and C++. I have a library that I am building and trying to link against. I have a project that compiles into a '.a' file which I then reference in my iOS test application. I continue to receive linker errors! I have the header file in my iOS test project. I believe I have all the required frameworks needed as well.

Undefined symbols for architecture armv7:

"MyCompany::ClientSDK::AudioRecognitionClient::AudioRecognitionClient()", referenced from: MyCompany::ClientSDK::AudioRecognitionClient::CreateInstance() in libiOSRecognitionSessionNative.a(AudioRecognitionClient.o) ld: symbol(s) not found for architecture armv7 clang: error: linker command failed with exit code 1 (use -v to see invocation)

4

1 に答える 1

0

リンクしようとしているライブラリのビルド設定を確認してください。特に、アーキテクチャ設定を探して、armv7 が含まれていることを確認してください。

于 2013-09-24T00:41:36.963 に答える