Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Xcode 7 crash every time I try to print something in the debugger console

I've searched around and can't find anything on this.

Using Swift 2 and Xcode Version 7.0.1 (7A1001). Every time I execute something in the debugger console, Xcode crashes.

The project is not very big, and has less than 10 third party frameworks.

I can't think of much more information that's relevant, but I'm sure there's more, so please do ask me if there's anything I should add to my question that would help.

I've of course cleaned build and derived data.

It's driving me insane. Thanks!



UPDATE 16/11/12

Submitted rdar://23559366.

like image 708
kylejm Avatar asked Oct 20 '15 09:10

kylejm


1 Answers

How are you maintaining your third party frameworks? Via Carthage?

If so then this is probably your issue: https://github.com/Carthage/Carthage/issues/924

This is an issue if the location of the /Carthage/Build/iOS folder is in a different location to where it was produced (i.e if it was compiled on a different machine and the absolute file path has changed).

A temporary fix would be to run carthage build --no-use-binaries on your machine to rebuild the symbols using the current absolute file path working around the bug.

But if you wasn't using carthage then its probably not your issue so sorry

like image 195
liamnichols Avatar answered Nov 07 '22 13:11

liamnichols