mirror of
https://github.com/tesseract-ocr/tesseract.git
synced 2025-06-12 21:53:25 +08:00
58 lines
1.8 KiB
Bash
Executable File
58 lines
1.8 KiB
Bash
Executable File
#!/bin/bash -eu
|
|
# Copyright 2019 Google Inc.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
#
|
|
################################################################################
|
|
|
|
cd $SRC/leptonica
|
|
./autogen.sh
|
|
|
|
./configure --disable-shared --without-giflib --without-jpeg --without-libopenjpeg --without-libpng --without-libwebp --without-libwebpmux
|
|
make SUBDIRS=src install -j$(nproc)
|
|
ldconfig
|
|
|
|
cd $SRC/tesseract
|
|
./autogen.sh
|
|
CXXFLAGS="$CXXFLAGS -D_GLIBCXX_DEBUG" ./configure --disable-graphics --disable-shared
|
|
make -j$(nproc)
|
|
|
|
mkdir $OUT/tessdata
|
|
curl -L -o $OUT/tessdata/eng.traineddata https://github.com/tesseract-ocr/tessdata/raw/main/eng.traineddata
|
|
|
|
LEPTONICA_LIBS=$(pkg-config --static --libs lept)
|
|
|
|
export
|
|
|
|
set -x
|
|
|
|
$CXX $CXXFLAGS \
|
|
-I $SRC/tesseract/include \
|
|
-I/usr/local/include/leptonica \
|
|
$SRC/tesseract/unittest/fuzzers/fuzzer-api.cpp -o $OUT/fuzzer-api \
|
|
$SRC/tesseract/.libs/libtesseract.a \
|
|
$LEPTONICA_LIBS \
|
|
$LIB_FUZZING_ENGINE
|
|
|
|
$CXX $CXXFLAGS \
|
|
-DTESSERACT_FUZZER_WIDTH=512 \
|
|
-DTESSERACT_FUZZER_HEIGHT=256 \
|
|
-I $SRC/tesseract/include \
|
|
-I/usr/local/include/leptonica \
|
|
$SRC/tesseract/unittest/fuzzers/fuzzer-api.cpp -o $OUT/fuzzer-api-512x256 \
|
|
$SRC/tesseract/.libs/libtesseract.a \
|
|
$LEPTONICA_LIBS \
|
|
$LIB_FUZZING_ENGINE
|
|
|
|
ldd $OUT/fuzzer-api
|