diff options
| author | van Hauser <vh@thc.org> | 2022-04-06 14:31:42 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-04-06 14:31:42 +0200 |
| commit | 9c2c35b23347be14d95b2eea0cb65bd39c70d5dd (patch) | |
| tree | c21e54124548564aba88b9675e3808b7230a8a5c /GNUmakefile | |
| parent | 3c5edab724f7e067163e85e94077c48894989573 (diff) | |
| parent | bf5b90f95a11090fdbda0da7468f657125cd4fab (diff) | |
| download | afl++-9c2c35b23347be14d95b2eea0cb65bd39c70d5dd.tar.gz | |
Merge pull request #1381 from f0rki/no-build-nyx
add make flag to avoid building nyx mode
Diffstat (limited to 'GNUmakefile')
| -rw-r--r-- | GNUmakefile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/GNUmakefile b/GNUmakefile index d31c52da..ec81cbac 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -373,6 +373,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_NYX - disable building nyx mode dependencies @echo AFL_NO_X86 - if compiling on non-intel/amd platforms @echo "LLVM_CONFIG - if your distro doesn't use the standard name for llvm-config (e.g. Debian)" @echo "==========================================" @@ -625,8 +626,10 @@ ifeq "$(ARCH)" "aarch64" -$(MAKE) -C coresight_mode endif ifeq "$(SYS)" "Linux" +ifndef NO_NYX -cd nyx_mode && ./build_nyx_support.sh endif +endif -cd qemu_mode && sh ./build_qemu_support.sh -cd unicorn_mode && unset CFLAGS && sh ./build_unicorn_support.sh endif @@ -645,8 +648,10 @@ ifeq "$(ARCH)" "aarch64" -$(MAKE) -C coresight_mode endif ifeq "$(SYS)" "Linux" +ifndef NO_NYX -cd nyx_mode && ./build_nyx_support.sh endif +endif -cd qemu_mode && sh ./build_qemu_support.sh -cd unicorn_mode && unset CFLAGS && sh ./build_unicorn_support.sh endif @@ -661,8 +666,10 @@ endif -$(MAKE) -C utils/libtokencap # -$(MAKE) -C utils/plot_ui ifeq "$(SYS)" "Linux" +ifndef NO_NYX -cd nyx_mode && ./build_nyx_support.sh endif +endif %.8: % @echo .TH $* 8 $(BUILD_DATE) "afl++" > $@ |
