Xcode Version For El Capitan

Question or issue on macOS:

  1. Xcode Version For El Capitan
  2. Xcode Version For El Capitan Update
  3. Xcode Version For El Capitan 10
  4. Xcode Version For El Capitan
  5. Xcode Version For El Capitan Free

Apple has just released, its latest version of the operating system for Macs and MacBooks, but if you’re running an older Mac Pro, released between mid-2010 and mid-2012, then the installation is a bit more complex, so Apple has revealed what hardware you’ll need.from Apple explains which graphics cards are compatible with macOS 10.14 Mojave thanks to their support of Apple’s 3D API.

  • MacPorts must be re-installed in a version configured for OS X 10.11 El Capitan. Ensure you have at least the command line tools installed by running xcode-select -install from a Terminal. Make sure to also run this even if you have Xcode installed, because some ports fail to build without it.
  • The last Xcode version compatible with El Capitan is Xcode 8.2.1. If you can't install it from within Apple App Store, visit Apple Developer and download the app there. An Apple ID is required. Xcode is provided as xip file (signed zip). You can simply unzip it by using Archives.app (i.e. With a double-click).
  • Developers who want to make use of the Xcode 8 SDKs from the command line must choose the SDK with xcode-select. Developers on OS X El Capitan who have installed versions of the Command Line Tools (OS X 10.11) for Xcode 8 Beta should install Command Line Tools (OS X 10.11) for Xcode 7.3.1.
  • XCode 8 El Capitan Mac OSX 10.11.6 Part #1.

I am trying to update Command line tools on my mac osx.

But when I run the update command, I get this error:

This doesn’t work either:

What is the exact string I should specify after sofwareupdate -i?

How to solve this problem?

Solution no. 1:

Xcode Version For El Capitan

For future travelers, here’s a version-agnostic approach. First, run softwareupdate --list. This will probably take a couple of minutes. When it’s done, you’ll see a bulleted (with an asterisk) output like this:

Find the bullet that refers to the Xcode command line tools. Copy that entire line (except the asterisk…). In the above case, you would copy: Command Line Tools (macOS High Sierra version 10.13) for Xcode-10.1

Then, run the install command (as shown by Brendan Shanks) with what you copied inside quotes:

Solution no. 2:

I’m going to answer a slightly different question here, because this question came up when I searched for a solution to my problem. Hopefully it’ll help someone (and it’ll surely help me next time I run into the same issue).

I wanted to upgrade the command line tools from version 8 to 9. The App Store didn’t suggest this upgrade, and neither did softwareupdate --list.

installed the new version of the tools. But clang --version still gave 8.0.0 as the version number. xcode-select -r and rebooting didn’t solve this issue.

xcode-select -p returned /Applications/Xcode.app/Contents/Developer, and clang --version reported an installation directory under there. I thought I’d start over again.

deleted version 8 of the tools. But xcode-select --install said the command line tools were already installed.

Xcode Version For El Capitan Update

Now, sudo xcode-select -p returns /Library/Developer/CommandLineTools/.

It seems that the problem was that the new version of the tools are installed to a different directory, and xcode-select -r is not clever enough to find the latest version.

Solution no. 3:

Run softwareupdate -i 'Command Line Tools (macOS El Capitan version 10.11) for Xcode-8.2'. The quotes are important.

Solution no. 4:

I faced similar problem on MacOS Mojave version 10.14.3 with Xcode 10.3 installed.
The real problem was, when I installed the Xcode 10.3, I deleted the “Xcode-beta.app” first and then installed the new version. Therefore, when I tried installing CLion for C++ development and configuring it, CMake gave me error And Updating Command Line Tool didnt work for me:

and showed me this response in terminal

Xcode

Then I tried to check the version of Clang using:

Xcode Version For El Capitan 10

And the response lead me to the real problem i.e. Active Developer path was still pointing to Old version of Xcode that I had already deleted.

Therefore, I switched the active developer path to latest Xcode App installed using:

And everything worked like a charm automatically.

Xcode Version For El Capitan

Solution no. 5:

I ran the same command with sudo and that did the trick.

sudo softwareupdate -i 'Command Line Tools (macOS El Capitan version 10.11) for Xcode-8.2'

Solution no. 6:

when upgrading to MacOS Catalina, Version 10.15.* you can install the command line tools for xcode 11.3 like this:

Xcode Version For El Capitan Free

Hope this helps!