“The world's fastest ARM recompiler"
This is a rewrite the dynarmic recompiler, with the goal of fixing its many flaws.
brew install cmake python3
brew install cmark llvmsudo apt update
sudo apt install build-essential cmake python3
sudo apt install libcmark-dev libclang-dev llvm-devsudo dnf install cmake python3 gcc-c++ cmark-devel clang-devel llvm-develmkdir build
cd build
cmake ..cmake -DCMAKE_PREFIX_PATH=$(brew --prefix llvm) ..cmake --build .The following executables will be created in the build/ directory:
libBallistic.a(Static Library)ballistic_cli(Used for Ballistic development)decoder_cli(Instruction decoding tool)cdoc(Documentation generator)ballistic_tests(Test suite)
See tools/ for more information on these executables.