https://github.com/vector35/debugger-test-binaries
Source and binary of test binaries for the Binary Ninja Debugger
https://github.com/vector35/debugger-test-binaries
Last synced: 8 months ago
JSON representation
Source and binary of test binaries for the Binary Ninja Debugger
- Host: GitHub
- URL: https://github.com/vector35/debugger-test-binaries
- Owner: Vector35
- License: mit
- Created: 2022-04-16T04:28:36.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2025-03-13T07:35:05.000Z (about 1 year ago)
- Last Synced: 2025-07-18T14:59:40.518Z (8 months ago)
- Language: Assembly
- Size: 51.8 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# debugger-test-binaries
Source and binary of test binaries for the Binary Ninja Debugger
## macOS
- arm64
```zsh
cd test
cmake -DARCH=arm64 .
make
```
Build results are in `binaries/Darwin-arm64`.
- x86_64
```zsh
cd test
cmake -DARCH=x86_64 .
make
```
Build results are in `binaries/Darwin-x86_64`.
## Linux
- x86_64
```Bash
cd test
cmake -DARCH=x86_64 .
make
```
Build results are in `binaries/Linux-x86_64`.
- x86
```Bash
cd test
cmake -DARCH=x86 .
make
```
Build results are in `binaries/Linux-x86`.
## Windows
- x86_64
Open x64 Visual Studio command prompt
```cmd
cd test
cmake -G "NMake Makefiles" -DCMAKE_BUILD_TYPE=Release -DARCH=x86_64 .
nmake
```
- x86
Open x86 Visual Studio command prompt
```cmd
cd test
cmake -G "NMake Makefiles" -DCMAKE_BUILD_TYPE=Release -DARCH=x86 .
nmake
```