mirror of https://github.com/google/oss-fuzz.git
40 lines
1.2 KiB
Bash
Executable File
40 lines
1.2 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.
|
|
#
|
|
################################################################################
|
|
|
|
./autogen.sh --no-po4a --no-doxygen
|
|
./configure \
|
|
--enable-static \
|
|
--disable-debug \
|
|
--disable-shared \
|
|
--disable-xz \
|
|
--disable-xzdec \
|
|
--disable-lzmadec \
|
|
--disable-lzmainfo \
|
|
--disable-ifunc
|
|
|
|
make clean
|
|
make -j$(nproc)
|
|
make -C tests/ossfuzz
|
|
|
|
cp $SRC/xz/tests/ossfuzz/config/*.options $OUT/
|
|
cp $SRC/xz/tests/ossfuzz/config/*.dict $OUT/
|
|
|
|
find $SRC/xz/tests/files -name "*.lzma" \
|
|
-exec zip -ujq $OUT/fuzz_decode_alone_seed_corpus.zip "{}" \;
|
|
find $SRC/xz/tests/files -name "*.xz" \
|
|
-exec zip -ujq $OUT/fuzz_decode_stream_seed_corpus.zip "{}" \;
|