about summary refs log tree commit diff
diff options
context:
space:
mode:
authorhexcoder- <heiko@hexco.de>2020-04-18 20:07:12 +0200
committerhexcoder- <heiko@hexco.de>2020-04-18 20:07:12 +0200
commit8ed3126f283aefc7cff10add1a5f2432bcdaa2cc (patch)
tree24d3cc5f50f8d0b9dba665bfc0f4a6297b3d820c
parentd9cd600c1bc2292de6d26d0687eb065bf9c138af (diff)
downloadafl++-8ed3126f283aefc7cff10add1a5f2432bcdaa2cc.tar.gz
fix compilation on Debian 32-bit (thanks to Marc)
-rw-r--r--GNUmakefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/GNUmakefile b/GNUmakefile
index 7c20a172..1a694ff3 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!)