Run ARM64 binary on X64 machine (Linux)Β 

This is how to compile C++ codes for ARM64 and  execute them on Ubuntu (x64). 
First, install following packages : 

sudo apt update -y && sudo apt upgrade –y 

Intall the qemu-user and aarch64 related tools.. 

sudo apt install qemu-user qemu-user-static gcc-aarch64-linux-gnu install g++-aarch64-linux-gnu binutils-aarch64-linux-gnu binutils-aarch64-linux-gnu-dbg build-essential 

Gcc is for C  (.c) codes. 
To compile C++ (.cpp) codes, use g++ 

Create sample small C++ (.cpp) program.

#include <stdio.h>Β 
#include <iostream>Β 

using namespace std;Β 

int main(void)Β Β 
{Β 
Β Β Β coutΒ <<Β endlΒ << "Hello!" <<Β endl;Β 
Β Β Β coutΒ << "This is ARM64 instructions executed on x64 CPU!\n" <<Β endl;Β 

Β Β  return 0;Β 
}

Save it as Test.cpp.Β 

Compiled with aarch64 compiler.Β 

aarch64-linux-gnu-g++  -static  -o Test Test.cppΒ 

After compilation, you can see the architecture of the compiled binary (Test) 

Run the output program “Test” on Ubuntu. 

You should see the ARM64 program was executed successfully on x86_64 Ubuntu.