Xcode Clang 10 Bus Error

When I try to create my Xcode code, I get

clang: error: unable to execute command: Bus error: 10 clang: error: linker command failed due to signal (use -v to see invocation) 

Does anyone know why? The code builds on my colleague. Just not on mine. I used DerivedData several times, not used.

+4
source share
2 answers

Have you tried to delete all your projects? Derived data folders, in your case they will be here: / Users / User_Name / Library / Developer / Xcode / DerivedData /. delete the entire project folder [Don’t worry, its safe] and make the product> Clear your projects from the Xcode menu.

I try, it succeeds!

+2
source

Deleting received data is sometimes not enough. It's also a good idea to check the paths to the frameworks. I ran into the error binding problem on bus 10 when I copied the structure to the project, but my skeleton path was associated with the volume created when the .dmg file was installed. Removing the wireframe path (in the build settings) solved the problem for me - in addition to deleting the received data.

0
source

All Articles