diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2017-09-24 11:13:37 +0200 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2017-09-25 15:19:06 +0200 |
| commit | af442a22d956464e7df703b290fa49d78dda3dfa (patch) | |
| tree | b50403630f29373cfb711a711fbfd24d632ce2ba /docs | |
| parent | 255e8b5e54e93fc77302a546dbb7a932412d1bde (diff) | |
executor, sys/windows: initial windows support
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 |
