Xcode svn "trap interrupt: 6" message

I found a problem with the svn tool after upgrading Xcode to version 4.4. I get the message "Abort trap: 6" every time I try to execute any command, for example, a list, checkout, etc.

For instance:

berec-Mac:~ berec$ /Applications/Xcode45-DP3.app/Contents/Developer/usr/bin/svn list https://source.com/mysource Abort trap: 6 

Thank you in advance for your consultation.

+4
source share
4 answers

The solution is here . The core of my problem was the Neon svn module. To enable the Xcode svn client, I simply replaced the xcode svn binary with svn containing the Serf module.

+1
source

Try using xcrun ( reference ):

 $ xcrun svn list https://source.com/mysource 

You may need to make sure your xcode-select ( reference ) is configured correctly, though:

 $ xcode-select -print-path 

Which should return with:

 /Applications/Xcode45-DP3.app/Contents/Developer 

If not, use:

 $ xcode-select -switch /Applications/Xcode45-DP3.app/Contents/Developer 
0
source

Install svn from homebrew :

 brew install svn 

What is the use of / usr / local / bin / svn.

0
source

According to my assumptions, there may be 2 reasons.

1) Maybe the network on which you use it has a lot of proxy server settings that create a problem.

2) Download Xcode Launch Tools from Xcode -> Preferences.

0
source

All Articles