Fix sentencepience build failure

This commit is contained in:
Abhishek Arya 2020-07-06 07:53:15 -07:00 committed by GitHub
parent e49a126000
commit a966c122ec
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -26,6 +26,6 @@ make install
for fuzzer in $(find $SRC -name '*_fuzzer.cc'); do
fuzz_basename=$(basename -s .cc $fuzzer)
$CXX $CXXFLAGS -std=c++11 -I. \
$fuzzers $LIB_FUZZING_ENGINE ./src/libsentencepiece.a \
$fuzzer $LIB_FUZZING_ENGINE ./src/libsentencepiece.a \
-o $OUT/$fuzz_basename
done