架构 x86_64 clang 存在 35 个重复符号:错误:链接器命令失败,退出代码为 1

问题描述 投票:0回答:1

我很沮丧......只是无法修复我在标题中提到的错误。我尝试过的:

  • 多次清理构建文件夹
  • 多次删除派生数据
  • 是的,我打开工作区(不是项目)
  • 将“无公共块”从“是”更改为“否”
  • pod 更新,pod 安装,...
  • 搜索重复项

到目前为止还没有成功......但我想我看到了问题:

Error Screenshot

看起来好像还有另一个 DerivedData 文件夹,但我多次删除了整个 DerivedData 文件夹(并且还在垃圾箱中删除了它。所以不可能有另一个 DerivedData 文件。如果我错了,请纠正我,但这对我来说毫无意义:(

或者“nanopb.build”pod 有问题.. idk :/ 有谁知道如何解决这个问题吗?

enter image description here其实我都不知道nanopb是什么东西...

问候

亨宁:)

编辑:

这是我的 Podfile:

   target 'huud' do
   use_frameworks!
    pod 'Firebase/Core'
    pod 'Firebase/Database'
    pod 'GrowingTextView', '0.7.2'
    pod "RAGTextField"
    pod 'SkyFloatingLabelTextField', '~> 3.0'
    pod 'NewPopMenu', '~> 2.0'
    pod 'LGButton'
    pod 'LocationPicker'
    end
swift xcode cocoapods deriveddata
1个回答
0
投票

尝试

pod deintegrate
然后
pod install

© www.soinside.com 2019 - 2024. All rights reserved.