Xcode fails without specifying and errors

前端 未结 22 1715
栀梦
栀梦 2021-02-12 13:27

All of a sudden my project fails to build in Xcode. If I look at the log I see all the needed dependencies being built, and then I get a strange error:

Verify fi         


        
相关标签:
22条回答
  • 2021-02-12 13:47

    I faced the same problem today. Cleaning the DerivedData and cloning the project somewhere else didn't help. What fixed my problem was repairing the volume from the Disk Utility app and removal of all Xcode plugins.

    0 讨论(0)
  • 2021-02-12 13:50

    Mine gave this error sometimes, also LLVM failed with exit code 1 and clang failed with exit code 255, at different code locations each time. I just had to reboot (OS X 10.7, Xcode 4.5).

    0 讨论(0)
  • 2021-02-12 13:50

    I added into the Framework search paths the header file location.... removing this from the top level project settings fixed the issue for me.

    Change at your peril.

    0 讨论(0)
  • 2021-02-12 13:51

    Build operation failed without specifying any errors. Individual build tasks may have failed for unknown reasons. One possible cause is if there are too many (possibly zombie) processes; in this case, rebooting may fix the problem. Some individual build task failures (up to 12) may be listed below.

    I've run into this problem consistently recently while running Xcode 9.0 Beta 3 and Xcode 8.3.3.

    The fix is to delete ALL in the Derived Data folder. It then seems to work again.

    rm -rf ~/Library/Developer/Xcode/DerivedData
    

    NOTE: just cleaning the build or deleting the current build folder for a project does not seem to help.

    Hope this helps :)

    0 讨论(0)
  • 2021-02-12 13:51

    just try to rename the folder name of the project. it did the trick for me

    0 讨论(0)
  • 2021-02-12 13:53
    Build operation failed without specifying any errors. Individual build tasks may have failed for unknown reasons.
    One possible cause is if there are too many (possibly zombie) processes; in this case, rebooting may fix the problem.
    Some individual build task failures (up to 12) may be listed below.
    

    This happens occur when the total path length is too long.

    change the folder name or location of directory, shorter then before.

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