mirror of
https://github.com/lemire/fast_double_parser.git
synced 2025-04-03 20:04:57 +00:00
7 lines
227 B
Bash
7 lines
227 B
Bash
#!/bin/bash -eu
|
|
|
|
# Copy all fuzzer executable to $OUT/
|
|
$CXX $CFLAGS $LIB_FUZZING_ENGINE \
|
|
$SRC/fast_double_parser/.clusterfuzzlite/parse_number_fuzzer.cpp \
|
|
-o $OUT/parse_number_fuzzer \
|
|
-I$SRC/fast_double_parser/include
|