aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/fuchsia.md19
-rw-r--r--docs/windows.md4
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
+```