test/fuzz: Build with -O2 by default

Fuzzers should run fast by default, since the goal is to try many
variations of input data.
This commit is contained in:
Jonathan Neuschäfer 2023-04-07 14:18:54 +02:00 committed by Simon Goldschmidt
parent 911da26f96
commit 5514d8eb63

View File

@ -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