diff options
author | hexcoder- <heiko@hexco.de> | 2020-04-17 19:42:03 +0200 |
---|---|---|
committer | hexcoder- <heiko@hexco.de> | 2020-04-17 19:42:03 +0200 |
commit | 6e753f8f0f91448c3890cbc7b238f4b48d35c009 (patch) | |
tree | a37bf884b361fc1ff3046c051b349e58d6b8c916 /examples | |
parent | 9adcc73d617f22ffdfaba0491374dc0b7edcf8cd (diff) | |
download | afl++-6e753f8f0f91448c3890cbc7b238f4b48d35c009.tar.gz |
examples Makefiles: silence errors when there is no 32-bit support installed
Diffstat (limited to 'examples')
-rw-r--r-- | examples/argv_fuzzing/Makefile | 4 | ||||
-rw-r--r-- | examples/socket_fuzzing/Makefile | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/examples/argv_fuzzing/Makefile b/examples/argv_fuzzing/Makefile index cd8ebdbb..5a0ac6e6 100644 --- a/examples/argv_fuzzing/Makefile +++ b/examples/argv_fuzzing/Makefile @@ -44,10 +44,10 @@ M32FLAG=$(___M32FLAG) all: argvfuzz32.so argvfuzz64.so argvfuzz32.so: argvfuzz.c - -$(CC) $(M32FLAG) $(CFLAGS) $^ $(LDFLAGS) -o $@ || echo "argvfuzz32 build failure (that's fine)" + -@$(CC) $(M32FLAG) $(CFLAGS) $^ $(LDFLAGS) -o $@ 2>/dev/null || echo "argvfuzz32 build failure (that's fine)" argvfuzz64.so: argvfuzz.c - -$(CC) $(M64FLAG) $(CFLAGS) $^ $(LDFLAGS) -o $@ || echo "argvfuzz64 build failure (that's fine)" + -@$(CC) $(M64FLAG) $(CFLAGS) $^ $(LDFLAGS) -o $@ 2>/dev/null || echo "argvfuzz64 build failure (that's fine)" install: argvfuzz32.so argvfuzz64.so install -d -m 755 $(DESTDIR)$(HELPER_PATH)/ diff --git a/examples/socket_fuzzing/Makefile b/examples/socket_fuzzing/Makefile index 03146001..9476e2d5 100644 --- a/examples/socket_fuzzing/Makefile +++ b/examples/socket_fuzzing/Makefile @@ -47,10 +47,10 @@ M32FLAG=$(___M32FLAG) all: socketfuzz32.so socketfuzz64.so socketfuzz32.so: socketfuzz.c - -$(CC) $(M32FLAG) $(CFLAGS) $^ $(LDFLAGS) -o $@ || echo "socketfuzz32 build failure (that's fine)" + -@$(CC) $(M32FLAG) $(CFLAGS) $^ $(LDFLAGS) -o $@ 2>/dev/null || echo "socketfuzz32 build failure (that's fine)" socketfuzz64.so: socketfuzz.c - -$(CC) $(M64FLAG) $(CFLAGS) $^ $(LDFLAGS) -o $@ || echo "socketfuzz64 build failure (that's fine)" + -@$(CC) $(M64FLAG) $(CFLAGS) $^ $(LDFLAGS) -o $@ 2>/dev/null || echo "socketfuzz64 build failure (that's fine)" install: socketfuzz32.so socketfuzz64.so install -d -m 755 $(DESTDIR)$(HELPER_PATH)/ |