Git失误操作导致文件冲突、路径错误

背景:一个月没碰这个App项目,进入项目路径后无脑pull远端仓库,导致本地文件冲突,虽然reset到之前的commit节点,但还是导致了以下意料之外的问题。

查询结果:-L -> Library , -F -> Framework, 

错误提示:

    ld: warning: directory not found for option'-L/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.3.sdk/usr/lib/system'

    ld: warning: directory not found for option '-F/Users/Touch/Desktop/0_MYWORK/ios/renrenbx/Vendor/QQ'


    ld: entry point (_main) undefined. for architecture armv7
    clang: error: linker command failed with exit code 1 (use -v to see invocation)

问题原因:dev分支pull远端仓库导致文件冲突,执行git reset hard xxx


解决方法:删除Framework Search Paths 、Library Search Paths 路径,并重新添加第三方库文件。检查Build Phases 是否缺失文件。Clean,重新编译。

原文地址:https://www.cnblogs.com/madarax/p/6513168.html