diff options
| author | van Hauser <vh@thc.org> | 2023-09-20 17:48:21 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-09-20 17:48:21 +0200 |
| commit | 14bca4431138a80b93795683dec588a40f6050a9 (patch) | |
| tree | d83a157ecf643474b406201f1b1c55c0196a4bab /GNUmakefile | |
| parent | 748d417f86d2d2a290c43428fd40ce616afcfc95 (diff) | |
| parent | 762fe0aad860c0c0fa3c9e19103c3df799498c72 (diff) | |
| download | afl++-14bca4431138a80b93795683dec588a40f6050a9.tar.gz | |
Merge pull request #1864 from ThomasTNO/utf8_support
Add support for UTF-8 line rendering
Diffstat (limited to 'GNUmakefile')
| -rw-r--r-- | GNUmakefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/GNUmakefile b/GNUmakefile index 88816e85..fadf20bd 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -45,6 +45,10 @@ ifdef NO_SPLICING override CFLAGS_OPT += -DNO_SPLICING endif +ifdef NO_UTF + override CFLAGS_OPT += -DFANCY_BOXES_NO_UTF +endif + ifdef ASAN_BUILD $(info Compiling ASAN version of binaries) override CFLAGS += $(ASAN_CFLAGS) @@ -391,6 +395,7 @@ help: @echo INTROSPECTION - compile afl-fuzz with mutation introspection @echo NO_PYTHON - disable python support @echo NO_SPLICING - disables splicing mutation in afl-fuzz, not recommended for normal fuzzing + @echo NO_UTF - do not use UTF-8 for line rendering in status screen (fallback to G1 box drawing, of vanilla AFL) @echo NO_NYX - disable building nyx mode dependencies @echo "NO_CORESIGHT - disable building coresight (arm64 only)" @echo NO_UNICORN_ARM64 - disable building unicorn on arm64 |
