Skip to content

Latest commit

 

History

History
53 lines (47 loc) · 800 Bytes

README.md

File metadata and controls

53 lines (47 loc) · 800 Bytes

debugger-test-binaries

Source and binary of test binaries for the Binary Ninja Debugger

macOS

  • 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.

Linux

  • 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.

Windows

  • 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