diff options
| author | van Hauser <vh@thc.org> | 2020-12-25 12:25:05 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-12-25 12:25:05 +0100 |
| commit | 450fd17451a31e2f327a4370165e88d99535c6fd (patch) | |
| tree | 003d67273010b7552ce25901add3740cfb2a839b /GNUmakefile | |
| parent | 7dc433a0c0efb236a2ab6fa4006a91aa02e26779 (diff) | |
| parent | a4fd4ea0f46529feb09577a13cc7c053fb22146f (diff) | |
| download | afl++-450fd17451a31e2f327a4370165e88d99535c6fd.tar.gz | |
Merge pull request #654 from AFLplusplus/dev
fix LTO
Diffstat (limited to 'GNUmakefile')
| -rw-r--r-- | GNUmakefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/GNUmakefile b/GNUmakefile index a1af1fd5..db2ad572 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -307,7 +307,7 @@ all: test_x86 test_shm test_python ready $(PROGS) afl-as llvm gcc_plugin test_bu .PHONY: llvm llvm: - -$(MAKE) -f GNUmakefile.llvm + -$(MAKE) -j -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 @@ -579,7 +579,7 @@ deepclean: clean .PHONY: distrib distrib: all - -$(MAKE) -f GNUmakefile.llvm + -$(MAKE) -j -f GNUmakefile.llvm -$(MAKE) -f GNUmakefile.gcc_plugin $(MAKE) -C utils/libdislocator $(MAKE) -C utils/libtokencap @@ -602,7 +602,7 @@ binary-only: test_shm test_python ready $(PROGS) .PHONY: source-only source-only: all - -$(MAKE) -f GNUmakefile.llvm + -$(MAKE) -j -f GNUmakefile.llvm -$(MAKE) -f GNUmakefile.gcc_plugin $(MAKE) -C utils/libdislocator $(MAKE) -C utils/libtokencap |
