Does Xcode with the -all option remove everything?

The documentation says:

To remove the Xcode developer tools on the boot volume along with the directory from the Terminal window type:
$ sudo <Xcode>/Library/uninstall-devtools --mode=all

To remove the main developer content on the boot volume, but leave the directory and supporting files intact from the type of terminal window:
$ sudo <Xcode>/Library/uninstall-devtools --mode=systemsupport

My confusion is that the first option does not say anything about removing the "main developer content".

Is the second option a subset of the first? Or do I need to run both to completely remove all Xcode traces from my system?

Is this the "core developer content" stored in the Xcode directory or some other place? If this is in some other place, it would seem difficult to remove if you have two versions of Xcode installed.

+3
source share
1 answer

Yes, the second option seems to be a subset of the first. I am not an expert, but I have been training with custom installations for the last 48 hours (with a few interruptions.) Remember when you installed xcode, he asked if you want to install "system support" (or system tools) and / unix tools "? Well, you can remove any or all of them.

Just enter this: sudo / Developer / Library / uninstall-devtools --help

+1
source

Source: https://habr.com/ru/post/1758071/


All Articles