diff options
author | vanhauser-thc <vh@thc.org> | 2021-08-18 10:06:33 +0200 |
---|---|---|
committer | vanhauser-thc <vh@thc.org> | 2021-08-18 10:06:33 +0200 |
commit | 69b7f2cae4fbb1ad34fd6a01aa0056126d7609d0 (patch) | |
tree | f1c947d01aa8be4579355d4a51643e1bbd3ead3e | |
parent | 2a68d37b4f545698d745086077db5ca9d25dc5dd (diff) | |
download | afl++-69b7f2cae4fbb1ad34fd6a01aa0056126d7609d0.tar.gz |
switch back to -j4 for building llvm
-rw-r--r-- | GNUmakefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/GNUmakefile b/GNUmakefile index 2161e68d..376f6e9a 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -310,7 +310,7 @@ all: test_x86 test_shm test_python ready $(PROGS) afl-as llvm gcc_plugin test_bu .PHONY: llvm llvm: - -$(MAKE) -j -f GNUmakefile.llvm + -$(MAKE) -j4 -f GNUmakefile.llvm @test -e afl-cc || { echo "[-] Compiling afl-cc failed. You seem not to have a working compiler." ; exit 1; } .PHONY: gcc_plugin @@ -598,7 +598,7 @@ endif .PHONY: distrib distrib: all - -$(MAKE) -j -f GNUmakefile.llvm + -$(MAKE) -j4 -f GNUmakefile.llvm ifneq "$(SYS)" "Darwin" -$(MAKE) -f GNUmakefile.gcc_plugin endif @@ -630,7 +630,7 @@ endif .PHONY: source-only source-only: all - -$(MAKE) -j -f GNUmakefile.llvm + -$(MAKE) -j4 -f GNUmakefile.llvm ifneq "$(SYS)" "Darwin" -$(MAKE) -f GNUmakefile.gcc_plugin endif |