From 5514d8eb633e69e77ff79a128eb9dd47e88ddec8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonathan=20Neusch=C3=A4fer?= Date: Fri, 7 Apr 2023 14:18:54 +0200 Subject: [PATCH] test/fuzz: Build with -O2 by default Fuzzers should run fast by default, since the goal is to try many variations of input data. --- test/fuzz/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/fuzz/Makefile b/test/fuzz/Makefile index 98c17464..05a4f631 100644 --- a/test/fuzz/Makefile +++ b/test/fuzz/Makefile @@ -38,7 +38,7 @@ endif LDFLAGS=-lm # use 'make D=-DUSER_DEFINE' to pass a user define to gcc -CFLAGS=-O0 $(D) +CFLAGS=-O2 $(D) LWIPDIR=../../src CONTRIBDIR=../../contrib