diff options
author | hexcoder- <heiko@hexco.de> | 2020-04-18 19:54:54 +0200 |
---|---|---|
committer | hexcoder- <heiko@hexco.de> | 2020-04-18 19:54:54 +0200 |
commit | b408fdffcc317f865a1379f802cb6e80bf862f62 (patch) | |
tree | c5144242bf340acb688546e9f6fb55dc00c12c3d | |
parent | ddea300822e5628482366ecb38adac31717d69bc (diff) | |
download | afl++-b408fdffcc317f865a1379f802cb6e80bf862f62.tar.gz |
fix compilation use CFLAGS_FLTO for afl-gotcpu also (thanks Marc)
-rw-r--r-- | GNUmakefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/GNUmakefile b/GNUmakefile index 11dfa803..6efc1328 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -316,7 +316,7 @@ afl-analyze: src/afl-analyze.c src/afl-common.o src/afl-sharedmem.o $(COMM_HDR) $(CC) $(CFLAGS) $(CFLAGS_FLTO) src/$@.c src/afl-common.o src/afl-sharedmem.o -o $@ $(LDFLAGS) afl-gotcpu: src/afl-gotcpu.c src/afl-common.o $(COMM_HDR) | test_x86 - $(CC) $(CFLAGS) src/$@.c src/afl-common.o -o $@ $(LDFLAGS) + $(CC) $(CFLAGS) $(CFLAGS_FLTO) src/$@.c src/afl-common.o -o $@ $(LDFLAGS) # document all mutations and only do one run (use with only one input file!) |