mirror of
https://github.com/ToruNiina/toml11.git
synced 2024-12-02 08:40:11 +00:00
7 lines
185 B
Bash
7 lines
185 B
Bash
|
#!/bin/bash -eu
|
||
|
# Copy fuzzer executable to $OUT/
|
||
|
$CXX $CFLAGS $LIB_FUZZING_ENGINE \
|
||
|
$SRC/toml11/.clusterfuzzlite/parse_fuzzer.cpp \
|
||
|
-o $OUT/parse_fuzzer \
|
||
|
-I$SRC/toml11/include/
|