问题
I've discovered problem with svn tool after updating XCode to version 4.4. I receive "Abort trap: 6" message every time I try to execute any command like list, checkout, etc.
For example:
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 advise.
回答1:
Solution is here. The core of my problem was the Neon svn module. To resolve XCode's svn client I just replaced Xcode's svn binary by svn binary containing Serf module.
回答2:
Try using xcrun
(reference):
$ xcrun svn list https://source.com/mysource
You might need to ensure that your xcode-select
(reference) is configured correctly first though:
$ xcode-select -print-path
Which should come back with:
/Applications/Xcode45-DP3.app/Contents/Developer
If not, use:
$ xcode-select -switch /Applications/Xcode45-DP3.app/Contents/Developer
回答3:
Installing svn from homebrew:
brew install svn
Than using /usr/local/bin/svn.
回答4:
According to my assumptions there may be 2 reasons.
1) May be the network which you are using it's have lots of proxy settings which is making problem.
2) Download Xcode command run tools from Xcode --> preference.
来源:https://stackoverflow.com/questions/11757491/xcodes-svn-abort-trap-6-message