From 03681ccbe630eb4db6322557e6bfe8cda8f41526 Mon Sep 17 00:00:00 2001 From: Alex Hultman Date: Sat, 4 Jan 2020 14:12:26 +0100 Subject: [PATCH] Restore fuzzing makefile --- fuzzing/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fuzzing/Makefile b/fuzzing/Makefile index f20a238..0c17ebf 100644 --- a/fuzzing/Makefile +++ b/fuzzing/Makefile @@ -1,8 +1,8 @@ # You can select which sanitizer to use by setting this SANITIZER ?= address # These are set by OSS-Fuzz, we default to AddressSanitizer -override CXXFLAGS += -DLIBUS_NO_SSL -fsanitize=$(SANITIZER),fuzzer -override CFLAGS += -DLIBUS_NO_SSL +CXXFLAGS ?= -DLIBUS_NO_SSL -fsanitize=$(SANITIZER),fuzzer +CFLAGS ?= -DLIBUS_NO_SSL OUT ?= . oss-fuzz: