2018-05-21 05:40:45 +00:00
|
|
|
#!/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.
|
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
|
|
|
|
# moz.build
|
2018-06-28 02:34:38 +00:00
|
|
|
$CC $CFLAGS -c \
|
2020-03-16 21:24:13 +00:00
|
|
|
-DNDEBUG -mavx -msse -msse2 -Wno-missing-field-initializers \
|
2018-05-21 05:40:45 +00:00
|
|
|
chain.c \
|
|
|
|
iccread.c \
|
|
|
|
matrix.c \
|
2019-07-15 05:47:05 +00:00
|
|
|
transform.cpp \
|
2020-03-16 21:24:13 +00:00
|
|
|
transform-avx.cpp \
|
2019-07-15 05:47:05 +00:00
|
|
|
transform-sse1.cpp \
|
|
|
|
transform-sse2.cpp \
|
2018-05-21 05:40:45 +00:00
|
|
|
transform_util.c
|
|
|
|
|
|
|
|
$CXX $CXXFLAGS -std=c++11 \
|
|
|
|
-I. *.o \
|
2018-06-28 02:34:38 +00:00
|
|
|
-DBUILD_FOR_OSSFUZZ \
|
2019-05-01 15:09:55 +00:00
|
|
|
$LIB_FUZZING_ENGINE \
|
2018-06-28 02:34:38 +00:00
|
|
|
fuzztest/qcms_fuzzer.cpp -o $OUT/fuzz
|
2018-05-21 05:40:45 +00:00
|
|
|
|
2018-08-30 13:30:18 +00:00
|
|
|
find fuzztest -iname "*.icc" \
|
|
|
|
-type f -exec zip -qju $OUT/fuzz_seed_corpus.zip "{}" \;
|
2018-07-27 13:26:25 +00:00
|
|
|
cp fuzztest/qcms_fuzzer.dict $OUT/fuzz.dict
|