Linux

Extra: Installing ARM Programming Libraries on your Intel Linux!



This video will show you how to install the necessary Linux libraries so you can do ARM assembly language programming on your x86_64 Intel/Linux computer and operating system! You don’t need to buy another computer to extend your programming knowledge.

The commands to do all of this are shown below. If any of these commands returns a message that the software is already installed, that’s a good thing!

Open a Linux terminal (Mint or Ubuntu), and type the following, one at a time. You can copy/paste into the terminal if you like.

sudo apt update
sudo apt upgrade
sudo apt install -y qemu-user
sudo apt install -y qemu-user-static
sudo apt install -y gcc-aarch64-linux-gnu
sudo apt install -y binutils-aarch64-linux-gnu-dbg
sudo apt install -y gcc-arm-linux-gnueabihf
sudo apt install -y binutils-arm-linux-gnueabihf
sudo apt install -y binutils-arm-linux-gnueabihf-dbg
sudo apt install -y gdb-multiarch

[ad_2]

source

Related Articles

Leave a Reply

Your email address will not be published. Required fields are marked *

Back to top button