zoukankan      html  css  js  c++  java
  • 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,重新编译。

  • 相关阅读:
    浏览器和node中的event loop的区别
    path.resolve(dir)与path.join(__dirname,dir)的区别
    如何在typescript项目中使用eslint
    eslint无法检测ts类型错误
    todo
    brew update 卡住
    async await原理
    node的require
    Hive表头导出成csv文件
    算法--决策树
  • 原文地址:https://www.cnblogs.com/madarax/p/6513168.html
Copyright © 2011-2022 走看看