How to uninstall GDB on osx

I want to uninstall GDB on my MAC. I tried to delete the / usr / local / bin / gdb folder, but when I installed it again, it was already installed. Does anyone know how to do this? thank.

+3


source to share


1 answer


To remove GDB from Homebrew, you must use brew rm gdb

. Simply removing the symbolic link /usr/local/bin/gdb

will still leave the formula built, just unrelated. Usually, you shouldn't try to delete Homebrew files manually. Homebrew is a package manager, so let the package manager handle it.



+5


source







All Articles