1

私は Xcode と obective-c を初めて使用し、別のマシンで別の開発者から引き継いだプロジェクトに問題があります。このプログラマーとはもう連絡が取れません (解雇されました)。

Ld /Users/*****/Library/Developer/Xcode/DerivedData/Dino-eyvcyvuofjuafncdadqeywyvdsra/Build/Products/Debug-iphonesimulator/Dino.app/Dino normal i386
        cd /Users/******/Dropbox/Xcode/ABCiTY/Dino
        setenv IPHONEOS_DEPLOYMENT_TARGET 5.1
        setenv PATH "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin"
        /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch i386 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator6.1.sdk -L/Users/******/Library/Developer/Xcode/DerivedData/Dino-eyvcyvuofjuafncdadqeywyvdsra/Build/Products/Debug-iphonesimulator -F/Users/******/Library/Developer/Xcode/DerivedData/Dino-eyvcyvuofjuafncdadqeywyvdsra/Build/Products/Debug-iphonesimulator -filelist /Users/******/Library/Developer/Xcode/DerivedData/Dino-eyvcyvuofjuafncdadqeywyvdsra/Build/Intermediates/Dino.build/Debug-iphonesimulator/Dino.build/Objects-normal/i386/Dino.LinkFileList -Xlinker -objc_abi_version -Xlinker 2 -ObjC -fobjc-arc -fobjc-link-runtime -Xlinker -no_implicit_dylibs -mios-simulator-version-min=5.1 -lABCityCrossMarketing -framework AdSupport -framework CoreMotion -framework SystemConfiguration -framework CoreData -framework QuartzCore -framework CoreImage -framework AVFoundation -framework StoreKit -framework UIKit -framework Foundation -framework CoreGraphics -lGoogleAnalytics -lGoogleConversionTracking -o /Users/*******/Library/Developer/Xcode/DerivedData/Dino-eyvcyvuofjuafncdadqeywyvdsra/Build/Products/Debug-iphonesimulator/Dino.app/Dino

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

誰でもこれで私を助けることができますか?

4

2 に答える 2

1

ライブラリ ファイルがありませんlibABCityCrossMarketing.a

「ABCityCrossMarketing」をグーグルで検索しても何も返されません。見た目が悪い。彼のマシンにまだアクセスできる場合、それがこのファイルを復元する唯一の方法のようです (このライブラリは彼によって書かれ、公開されていない可能性があります)。

于 2013-02-26T14:40:02.887 に答える
0

ここでのメッセージは明らかです。

library not found for -lABCityCrossMarketing

これは、フォルダーとコントロールを移動した場合、または基本的に任意のファイルが Xcode によって置き忘れられ、どこにあるかがわからない場合に発生します。プロジェクトに再度追加するか、リストされている場所へのパスを変更する必要があります。

于 2013-02-26T14:38:46.783 に答える