diff options
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/windows.md | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/docs/windows.md b/docs/windows.md new file mode 100644 index 000000000..b89caf55c --- /dev/null +++ b/docs/windows.md @@ -0,0 +1,18 @@ +# Windows + +To update descriptions run (assumes `cl` cross-compiler is in PATH): +``` +syz-extract -os=windows +syz-sysgen +``` + +To build binaries: +``` +go build -o bin/windows_amd64/syz-stress.exe ./tools/syz-stress +cl executor\executor_windows.cc /EHsc -o bin\windows_amd64\syz-executor.exe +``` + +To run: +``` +bin\windows_amd64\syz-stress.exe -executor c:\full\path\to\bin\windows_amd64\syz-executor.exe -cover=0 +```
\ No newline at end of file |
