Xcode 6 linker error - Undefined symbols for architecture armv7

前端 未结 10 2076
粉色の甜心
粉色の甜心 2021-01-31 10:15

After upgrading to Xcode 6 beta 7 (and now still with Xcode 6 GM) I am unable to link my Swift app. I receive errors such as:

Undefined symbols for archit

10条回答
  •  后悔当初
    2021-01-31 10:54

    I solved this issue after trying all that was suggested here with no luck. Like someone said earlier, it's a SourceControl issue.

    One of my project files (the one referenced in the error message) was missing from the project browser. However, XCode still had a reference to it (I was going to the class definition when I was selecting "jump to definition" from Xcode GUI).

    As a matter of fact, the project.pbxproj was not listing it. This was probably a Git Issue. In any event, I just recreated the file in the same directory it has been recreated and voila.

提交回复
热议问题