mirror of https://github.com/google/oss-fuzz.git
41 lines
1.6 KiB
Bash
Executable File
41 lines
1.6 KiB
Bash
Executable File
#!/bin/bash -eu
|
|
# Copyright 2018 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.
|
|
#
|
|
################################################################################
|
|
|
|
mkdir opencv/build
|
|
pushd opencv/build
|
|
cmake -D CMAKE_BUILD_TYPE=Release -D CMAKE_INSTALL_PREFIX=$WORK \
|
|
-DBUILD_SHARED_LIBS=OFF -DOPENCV_GENERATE_PKGCONFIG=ON \
|
|
-DOPENCV_GENERATE_PKGCONFIG=ON -DOPENCV_FORCE_3RDPARTY_BUILD=ON ..
|
|
make -j$(nproc)
|
|
make install
|
|
popd
|
|
|
|
for fuzzer in imdecode_fuzzer imread_fuzzer; do
|
|
$CXX $CXXFLAGS -lFuzzingEngine $fuzzer.cc -std=c++11 \
|
|
-I$WORK/include/opencv4/opencv \
|
|
-I$WORK/include/opencv4 -L$WORK/lib \
|
|
-L$WORK/lib/opencv4/3rdparty \
|
|
-L$SRC/opencv/build/lib \
|
|
-lopencv_dnn -lopencv_objdetect -lopencv_photo -lopencv_ml -lopencv_gapi \
|
|
-lopencv_stitching -lopencv_video -lopencv_calib3d -lopencv_features2d \
|
|
-lopencv_highgui -lopencv_videoio -lopencv_imgcodecs -lopencv_imgproc \
|
|
-lopencv_flann -lopencv_core -llibjpeg-turbo -llibwebp -llibpng -llibtiff \
|
|
-llibjasper -lIlmImf -llibprotobuf -lquirc -lzlib -littnotify -lippiw \
|
|
-lippicv -lade -ldl -lm -lpthread -lrt \
|
|
-o $OUT/$fuzzer
|
|
done
|