How to install and uninstall the cross-compilation toolchain

If the target machine architecture is arm-linux-gnueabi and the host machine uses ubuntu, you can use the following command to automatically install the cross-compilation toolchain:

sudo apt-get install gcc-arm-linux-gnueabi

To uninstall only gcc-arm-linux-gnueabi, use the command:

sudo apt-get remove gcc-arm-linux-gnueabi

Uninstall the entire cross-compilation toolchain:

sudo apt-get remove --auto-remove gcc-arm-linux-gnueabi


 

Guess you like

Origin blog.csdn.net/luotuo28/article/details/131070648