aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Max Moroz <dor3s1@gmail.com>2017-08-01 09:31:29 -0700
committerGravatar GitHub <noreply@github.com>2017-08-01 09:31:29 -0700
commit7500de43227a6775689d2a2351343807a5e49da5 (patch)
treeec3b7779a30f75011e414ea22f994ab849637fe7
parent808a1ba6719bc778ba9e526b2cc1635f8f496ec1 (diff)
[docs] Add note regarding -march/-mtune flags as suggested in #752. (#753)
-rw-r--r--docs/fuzzer_environment.md6
1 files changed, 6 insertions, 0 deletions
diff --git a/docs/fuzzer_environment.md b/docs/fuzzer_environment.md
index 0907cfe4..314d67b9 100644
--- a/docs/fuzzer_environment.md
+++ b/docs/fuzzer_environment.md
@@ -47,6 +47,12 @@ executable lives in.
`/dev` is also unavailable.
+## Hardware
+
+Your project should not be compiled with `-march=native` or `-mtune=native`
+flags, as the build infrastructure and fuzzing machines may have different CPUs
+as well as other hardware differences. You may however use `-mtune=generic`.
+
## Network access
There will be no network interfaces available (not even loopback).