Source and binary of test binaries for the Binary Ninja Debugger
- arm64
cd test
cmake -DARCH=arm64 .
make
Build results are in binaries/Darwin-arm64
.
- x86_64
cd test
cmake -DARCH=x86_64 .
make
Build results are in binaries/Darwin-x86_64
.
- x86_64
cd test
cmake -DARCH=x86_64 .
make
Build results are in binaries/Linux-x86_64
.
- x86
cd test
cmake -DARCH=x86 .
make
Build results are in binaries/Linux-x86
.
- x86_64
Open x64 Visual Studio command prompt
cd test
cmake -G "NMake Makefiles" -DCMAKE_BUILD_TYPE=Release -DARCH=x86_64 .
nmake
- x86 Open x86 Visual Studio command prompt
cd test
cmake -G "NMake Makefiles" -DCMAKE_BUILD_TYPE=Release -DARCH=x86 .
nmake