MATLAB: Xcode error, plz help

xcode

Helo, I am using OS X Yosemite, version 10.10.5. The matlab using is matlab2014b. The Xcode using is Xcode-beta. when I am trying to simulate a simulink file with user defined matlab program, the following error appears. I tried a lot to eliminate the error but nothing works. plz help.
Warning: Xcode appears to be installed, but it has not been configured. Run "osascript -e 'do shell script "xcode-select -switch /Applications/Xcode.app" with administrator privileges'" to configure Xcode. You must be an administrator of this computer to complete this action.
No supported compiler or SDK was found. For options, visit http://www.mathworks.com/support/compilers/R2014b/maci64.html. gmake: * [solar_module8_sfun.o] Error 255 Component: Make | Category: Make error

Best Answer

Start up the Terminal application, which you can find in /Applications/Utilities . When you get to the command prompt, command
sudo xcode-select -switch /Applications/Xcode.app
and authenticate when it prompts you for your password.
After that xcode will be selected and you should be able to proceed.
Note: be sure that the files have been edited as described in http://uk.mathworks.com/matlabcentral/answers/243868-mex-can-t-find-compiler-after-xcode-7-update-r2015b and notice the prefdir files mentioned in the comments on one of the Answers in that Question.
Related Question