Learn how to install x86-64 Assembly locally to solve Exercism's exercises on your own machine
Please note that this track only supports the calling convention of the System V AMD64 ABI. Windows users will need to install Windows Subsystem for Linux (WSL), or set up a Linux virtual machine.
Install the required software using your system's package manager:
$ sudo apt-get install gcc make nasm
$ sudo dnf install gcc make nasm
$ sudo yum install gcc make nasm
$ sudo pacman -S gcc make nasm
$ sudo zypper install gcc make nasm
Install the Xcode Command Line Tools:
$ xcode-select --install
Install NASM using Homebrew:
$ brew install nasm
To install WSL, see https://docs.microsoft.com/en-us/windows/wsl/install-win10.