Hi Erel, the output of xcode-select -p is:
/Library/Developer/CommandLineTools
and the output of xcodebuild -version is:
xcode-select: error: tool 'xcodebuild' requires Xcode, but active developer directory '/Library/Developer/CommandLineTools' is a command line tools instance
Hmm, that clearly doesn't seem right, I looked up that error and
this pointed me to the fix. Essentially had to ensure:
- Install Xcode (get it from https://developer.apple.com/xcode/) if you don't have it yet.
- Accept the Terms and Conditions.
- Ensure Xcode app is in the /Applications directory (NOT /Users/{user}/Applications).
- Point xcode-select to the Xcode app Developer directory using the following command:
sudo xcode-select -s /Applications/Xcode.app/Contents/Developer
#4 was what fixed it for me, so the v5.8 Mac buildserver starts up as expected now
- thank you for your help and pointing me in the right direction!
I've updated the thread title to [SOLVED].