0

Ld /Users/xxxxxxx/Library/Developer/Xcode/DerivedData/Affectiva-cwgdzearaapwhxcpqywcfkycewwz/Build/Products/Debug-iphonesimulator/Affectiva.app/Affectiva normal x86_64 cd /Users/xxxxxxx/Desktop/Affectiva export IPHONEOS_DEPLOYMENT_TARGET=9.3 export PATH=" /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin: /bin:/usr/sbin:/sbin" /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms /iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator9.3.sdk -L/Users/xxxxxxx/Library/Developer/Xcode/DerivedData/Affectiva-cwgdzearaapwhxcpqywcfkycewwz/Build/Products/Debug-iphonesimulator -F/Users/xxxxxxx/Library/Developer/Xcode/DerivedData/Affectiva-cwgdzearaapwhxcpqywcfkycewwz/Build/Products/ Debug-iphonesimulator -filelist /Users/xxxxxxx/Library/Developer/Xcode/DerivedData/Affectiva-cwgdzearaapwhxcpqywcfkycewwz/Build/Intermediates/Affectiva.build/Debug-iphonesimulator/Affectiva.build/Objects-normal/x86_64/Affectiva.LinkFileList -Xlinker - rpath -Xlinker @executable_path/Frameworks -mios-simulator-version-min=9.3 -Xlinker -no_deduplicate -Xlinker -objc_abi_version -Xlinker 2 -fobjc-arc -fobjc-link-runtime -framework Affdex -Xlinker -dependency_info -Xlinker /Users/ xxxxxxx/ライブラリ/開発者/Xcode/DerivedData/Affectiva-cwgdzearaapwhxcpqywcfkycewwz/ビルド/中間体/Affectiva.build/Debug-iphonesimulator/Affectiva.build/Objects-normal/x86_64/Affectiva_dependency_info.dat -o /Users/xxxxxxx/Library/Developer/Xcode/DerivedData/Affectiva-cwgdzearaapwhxcpqywcfkycewwz/Build/Products/Debug-iphonesimulator/Affectiva.app/アフェクティバ

ld: フレームワークが見つかりません Affdex clang: エラー: リンカー コマンドが終了コード 1 で失敗しました (呼び出しを確認するには -v を使用してください)


N00b 質問です。

私は何を間違っていますか?

4

1 に答える 1

1

このエラー:

ld: framework not found Affdex clang: error: linker command failed with exit code 1 (use -v to see invocation)

リンカーが Affdex.framework を見つけられないことを示します。

Affdex.framework ファイルを Xcode プロジェクトにドラッグしましたか? このアクションにより、Xcode はフレームワークをプロジェクトに関連付けることができ、リンカー エラーは解決されます。

ビルド時にアプリにコピーされるように、組み込みバイナリとして Affdex.framework も追加する必要があることに注意してください。これを行うには、Xcode でターゲット アプリを選択し、[全般] タブに移動して、[埋め込みバイナリ] セクションに Affdex.framework を追加します。

于 2016-07-13T12:06:06.127 に答える