How can I find out if I have Xcode commandline tools installed?

XcodeCommand LineInstallation

Xcode Problem Overview


I need to use gdb.

ps-MacBook-Air:AcoustoExport pi$ gdb
-bash: gdb: command not found

ps-MacBook-Air:AcoustoExport pi$ sudo find / -iname "*gdb*"
Password:
/usr/local/share/gdb
/usr/local/Cellar/isl/0.12.1/share/gdb
:

and:

ps-MacBook-Air:AcoustoExport pi$ ls -la /usr/local/share/gdb
lrwxr-xr-x   1 pi    admin   30 14 Jan 22:01 gdb -> ../Cellar/isl/0.12.1/share/gdb

Not quite sure what to make this, clearly it is something installed by homebrew. I don't know why it's there, I don't know whether I could use it instead. It isn't in the search path.

So I figure I need Xcode commandline tools.

https://stackoverflow.com/questions/19907576/xcode-is-not-currently-available-from-the-software-update-server

^ my current problem exactly. Comment on that question says "you can get this error if you have them already"

But how do I check whether I have them already?

Xcode Solutions


Solution 1 - Xcode

/usr/bin/xcodebuild -version

will give you the xcode version, run it via Terminal command

Solution 2 - Xcode

First of all, be sure that you have downloaded it or not. Open up your terminal application, and enter $ gcc if you have not installed it you will get an alert. You can verify that you have installed it by

$ xcode-select -p
/Library/Developer/CommandLineTools

And to be sure then enter $ gcc --version

You can read more about the process here: Xcode command line tools for Mavericks

Solution 3 - Xcode

> if you want to know the install version of Xcode as well as Swift > language current version:

Use below simple command by using Terminal:

1. To get install Xcode Version

 xcodebuild -version

2. To get install Swift language Version

swift --version

Solution 4 - Xcode

This command allows you to retrieve Xcode version when having only the CommandLineTools version installed:

pkgutil --pkg-info=com.apple.pkg.CLTools_Executables | grep version

As per this answer to "Determine xcode command line tools version" on Ask Different

Notes:

  • Confirmed working on maxOS Sierra and Big Sur.
  • When only CommandLineTools is install without Xcode, using xcodebuild returns the following error:
# /usr/bin/xcodebuild -version
xcode-select: error: tool 'xcodebuild' requires Xcode, but active developer directory '/Library/Developer/CommandLineTools' is a command line tools instance

Solution 5 - Xcode

Thanks to the folks on Freenode's #macdev, here is some information:

In the old days before Xcode was on the app-store, it included commandline tools.

Now you get it from the store, and with this new mechanism it can't install extra things outside of the Xcode.app, so you have to manually do it yourself, by:

xcode-select --install

On Xcode 4.x you can check to see if they are installed from within the Xcode UI:

enter image description here

On Xcode 5.x it is now here:

enter image description here

My problem of finding gcc/gdb is that they have been superseded by clang/lldb: https://stackoverflow.com/questions/19554439/gdb-missing-in-os-x-mavericks

Also note that Xcode contains compiler and debugger, so one of the things installing commandline tools will do is symlink or modify $PATH. It also downloads certain things like git.

Solution 6 - Xcode

If for some reason xcode is not installed under

/usr/bin/xcodebuild

execute the following command

which xcodebuild

and if it is installed, you'll be prompted with it's location.

Solution 7 - Xcode

You can open the Xcode app and go to preferences:

enter image description here

Solution 8 - Xcode

For macOS catalina try this : open Xcode. if not existing. download from App store (about 11GB) then open Xcode>open developer tool>more developer tool and used my apple id to download a compatible command line tool. Then, after downloading, I opened Xcode>Preferences>Locations>Command Line Tool and selected the newly downloaded command line tool from downloads.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionP iView Question on Stackoverflow
Solution 1 - XcodeRohitView Answer on Stackoverflow
Solution 2 - XcodeSiavash AlpView Answer on Stackoverflow
Solution 3 - XcodeKiran JadhavView Answer on Stackoverflow
Solution 4 - XcodeAlexView Answer on Stackoverflow
Solution 5 - XcodeP iView Answer on Stackoverflow
Solution 6 - XcodeSylvesterAbreuLoretoView Answer on Stackoverflow
Solution 7 - XcodeBoaz FrenkelView Answer on Stackoverflow
Solution 8 - XcodeGodspower OmenihuView Answer on Stackoverflow