diff options
Diffstat (limited to 'src/extra_tests/fuzzers/GNUmakefile')
-rw-r--r-- | src/extra_tests/fuzzers/GNUmakefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/extra_tests/fuzzers/GNUmakefile b/src/extra_tests/fuzzers/GNUmakefile index 3ebe64be7..aa45eb040 100644 --- a/src/extra_tests/fuzzers/GNUmakefile +++ b/src/extra_tests/fuzzers/GNUmakefile @@ -40,11 +40,11 @@ dirs: afl-build: ../../../configure.py $(CFG_FLAGS) --with-build-dir=afl-build --cc=$(AFL_CXX_TYPE) --cc-bin=$(AFL_CXX) - make -f afl-build/Makefile afl-build/libbotan-1.11.a -j8 + make -j$(nproc) -f afl-build/Makefile afl-build/libbotan-1.11.a llvm-build: ../../../configure.py $(CFG_FLAGS) --with-build-dir=llvm-build --cc=clang --cc-bin=$(CLANG_CXX) --cc-abi-flags="$(CLANG_SAN_FLAGS)" - make -f llvm-build/Makefile llvm-build/libbotan-1.11.a -j8 + make -j$(nproc) -f llvm-build/Makefile llvm-build/libbotan-1.11.a # libFuzzer default is max_len 64 this sets 140 but allows override via args= run_llvm_%: bin/llvm_fuzz_% |