diff options
author | van Hauser <vh@thc.org> | 2024-10-20 09:23:56 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-20 09:23:56 +0200 |
commit | 7f614be3a555435421465e35536e70ff9c960a79 (patch) | |
tree | cf8bdb2cb14151e90bc8016203405b44501dd2e7 /docs/env_variables.md | |
parent | 8a060a4b68a0aa1c812916bcbcf4bf3424854124 (diff) | |
parent | 04d2476b324f5c6124c665b24989d15dd61f0f2b (diff) | |
download | afl++-7f614be3a555435421465e35536e70ff9c960a79.tar.gz |
Merge pull request #2229 from g0ku704/feat/disable_gcc_version_check
Introduce `AFL_GCC_DISABLE_VERSION_CHECK` to disable GCC version check
Diffstat (limited to 'docs/env_variables.md')
-rw-r--r-- | docs/env_variables.md | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/docs/env_variables.md b/docs/env_variables.md index d0789105..d1edb6fd 100644 --- a/docs/env_variables.md +++ b/docs/env_variables.md @@ -326,6 +326,11 @@ mode. [instrumentation/README.instrument_list.md](../instrumentation/README.instrument_list.md) for more information. + Setting `AFL_GCC_DISABLE_VERSION_CHECK=1` will disable the GCC plugin + version check if the target GCC plugin differs from the system-installed + version, resolving issues caused by version mismatches between GCC and + the plugin. + Setting `AFL_GCC_OUT_OF_LINE=1` will instruct afl-gcc-fast to instrument the code with calls to an injected subroutine instead of the much more efficient inline instrumentation. |