From af442a22d956464e7df703b290fa49d78dda3dfa Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Sun, 24 Sep 2017 11:13:37 +0200 Subject: executor, sys/windows: initial windows support --- docs/windows.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 docs/windows.md (limited to 'docs') 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 -- cgit mrf-deployment