Xcode version 4.6.2 (4H1003) compiler error

后端 未结 9 613
萌比男神i
萌比男神i 2020-12-13 11:48

I just updated to Xcode version 4.6.2 (4H10003) and tried to run a previously working application project in the simulator and received the following error and the build fai

相关标签:
9条回答
  • 2020-12-13 12:14

    Do a cleanup using command+shift+k and run existing project again.

    enter image description here

    0 讨论(0)
  • 2020-12-13 12:20

    Go to your project's Build Settings, find a setting named Precompiled Headers Cache Path, then delete that folder

    0 讨论(0)
  • 2020-12-13 12:20

    Specially if you build from command line or you have a build script, cleaning xcode target is not enough. You have to delete this folder.

    The exact location of precompiled header can be found in the project, part of the folder path is random (I guess), esp after /var/folders/xx..xxx/C.

    Target -> build settings => "Build locations" -> Precompiled headers cached path
    

    Run Terminal and go to this folder and delete (use command),

    #rm -fr SharedPrecompiledHeaders
    

    enter image description here

    0 讨论(0)
  • 2020-12-13 12:22

    I had to manually delete ~/Library/Developer/Xcode/DerivedData/ Clean didn't work for me.

    0 讨论(0)
  • 2020-12-13 12:26

    Do a Clean of the project; hold Option so that you are cleaning out the whole build folder and intermediates. You might have to quit Xcode and throw away the whole contents of the DerivedData folder by hand in the Finder, as I describe here: How to Empty Caches and Clean All Targets Xcode 4

    0 讨论(0)
  • 2020-12-13 12:26

    Clean Your project and run

    Product- > Clean Then, Run.

    0 讨论(0)
提交回复
热议问题