mirror of
https://github.com/red0124/ssp.git
synced 2025-04-20 10:37:57 +02:00
12 lines
243 B
Makefile
12 lines
243 B
Makefile
BIN=ssp_fuzz
|
|
OPT_BIN=opt_ssp_fuzz
|
|
SRC=ssp_fuzz.cpp
|
|
|
|
all:
|
|
${CXX} ${SRC} -fsanitize=fuzzer -std=c++17 -o ${BIN}
|
|
${CXX} ${SRC} -fsanitize=fuzzer -std=c++17 -O2 -o ${OPT_BIN}
|
|
|
|
run:
|
|
./${BIN} -max_total_time=300
|
|
./${OPT_BIN} -max_total_time=300
|