XCode's svn “abort trap: 6” message

試著忘記壹切 提交于 2020-01-03 17:09:14

问题


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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!