Xcode构建错误 – 多个命令产生.o,目标’ProjectCoreData’具有两次列出的Swift源文件的编译命令

前端之家收集整理的这篇文章主要介绍了Xcode构建错误 – 多个命令产生.o,目标’ProjectCoreData’具有两次列出的Swift源文件的编译命令前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在运行xCode版本10.1(10B61),Mojave 10.14(18A391)

搜索在一年多前的Xcode 10中显示了类似的问题,但此后没有问题.去年的解决方案似乎正在转向传统模式,但现在不行.看来存储在我桌面上的源代码与“DerivedData”中的代码冲突,我不知道为什么会突然弹出这么随机代码.

如果我删除Core Data中添加的最后一个模型,我会看到这个问题消失了.当我向另一个对象添加关系时,它似乎会触发.这显然是随机的.

关于如何解决这个问题的任何建议,以便我可以发展?

Multiple commands produce '//Library/Developer/Xcode/DerivedData/ProjectCoreData-ehjvvgovpitmbcegzopwciptfafr/Build/Intermediates.noindex/ProjectCoreData.build/Debug-iphonesimulator/ProjectCoreData.build/Objects-normal/x86_64/Contact+CoreDataClass.o':

Target 'ProjectCoreData' (project 'ProjectCoreData') has compile command for Swift source files

Target 'ProjectCoreData' (project 'ProjectCoreData') has compile command for Swift source files

从日志:

<unknown>:0: error: filename "Contact+CoreDataClass.swift" used twice: '/Users/<user>/Desktop/ProjectCoreData/Contact+CoreDataClass.swift' and '/Users/<user>/Library/Developer/Xcode/DerivedData/ProjectCoreData-ehjvvgovpitmbcegzopwciptfafr/Build/Intermediates.noindex/ProjectCoreData.build/Debug-iphonesimulator/ProjectCoreData.build/DerivedSources/CoreDataGenerated/ProjectCoreData/Contact+CoreDataClass.swift'
<unknown>:0: note: filenames are used to distinguish private declarations with the same name
<unknown>:0: error: filename "Contact+CoreDataProperties.swift" used twice: '/Users/<user>/Desktop/ProjectCoreData/Contact+CoreDataProperties.swift' and '/Users/<user>/Library/Developer/Xcode/DerivedData/ProjectCoreData-ehjvvgovpitmbcegzopwciptfafr/Build/Intermediates.noindex/ProjectCoreData.build/Debug-iphonesimulator/ProjectCoreData.build/DerivedSources/CoreDataGenerated/ProjectCoreData/Contact+CoreDataProperties.swift'
<unknown>:0: note: filenames are used to distinguish private declarations with the same name
Command /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc Failed with exit code 1

解决方法

根据这个 What’s new in Core Data

这是解决方案的图片

猜你在找的Xcode相关文章