Unix uninstall gdb debugging tools trick

  

Unix system can uninstall the installed program through the command, but there are problems when the user uninstalled the gdb debugging tool with the make uninstall command, the uninstallation fails, the following small series teaches you how to uninstall gdb Debugging tools.

A few days ago there is some problem installing the latest gdb process, want to uninstall it. After the result of executing the "make uninstall" command, the following result appears:

bash-3.2# make uninstall

the uninstall target is not supported in this tree

Gdb does not support direct uninstallation with the "make uninstall" command, so how to uninstall it?

Yikes.

A clumsy workaround is to cd into each subdir in the build tree and do

make uninstall there.

Subdirectories, respectively, execute the "make uninstall" command.

This problem is mainly caused by the gdb debugging tool uninstallation. If there is no repair, you need to enter each subdirectory to execute the command to uninstall the gdb debugging tool.

Copyright © Windows knowledge All Rights Reserved