diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2017-09-25 15:40:58 +0200 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2017-09-25 15:40:58 +0200 |
| commit | e2f1c7ed36b35111ae7f2c6d6dbe43d50ffddd90 (patch) | |
| tree | 51fa595b4cff54c136208cdee2bf5879d62c4542 /docs | |
| parent | af442a22d956464e7df703b290fa49d78dda3dfa (diff) | |
Makefile: add fuchsia support
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/fuchsia.md | 19 | ||||
| -rw-r--r-- | docs/windows.md | 4 |
2 files changed, 21 insertions, 2 deletions
diff --git a/docs/fuchsia.md b/docs/fuchsia.md new file mode 100644 index 000000000..71932708c --- /dev/null +++ b/docs/fuchsia.md @@ -0,0 +1,19 @@ +# Fuchsia support + +To update descriptions run: +``` +make extract TARGETOS=fuchsia SOURCEDIR=/path/to/fuchsia/checkout +make generate +``` + +To build binaries: +``` +make TARGETOS=fuchsia TARGETARCH=amd64 SOURCEDIR=/path/to/fuchsia/checkout +``` + +To run: +``` +$SOURCEDIR/out/build-zircon/tools/netcp bin/fuchsia_amd64/syz-executor :/syz-executor +$SOURCEDIR/out/build-zircon/tools/netcp bin/fuchsia_amd64/syz-stress :/syz-stress +$SOURCEDIR/out/build-zircon/tools/netruncmd : "/syz-stress -executor /syz-executor -cover=0" +``` diff --git a/docs/windows.md b/docs/windows.md index b89caf55c..12691a521 100644 --- a/docs/windows.md +++ b/docs/windows.md @@ -1,4 +1,4 @@ -# Windows +# Windows support To update descriptions run (assumes `cl` cross-compiler is in PATH): ``` @@ -15,4 +15,4 @@ 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 +``` |
