2018-11-02 23:51:39 +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.
|
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
|
2023-03-20 15:21:06 +00:00
|
|
|
./autogen.sh --no-po4a --no-doxygen
|
2018-11-02 23:51:39 +00:00
|
|
|
./configure \
|
|
|
|
--enable-static \
|
|
|
|
--disable-debug \
|
|
|
|
--disable-shared \
|
|
|
|
--disable-xz \
|
|
|
|
--disable-xzdec \
|
|
|
|
--disable-lzmadec \
|
2023-07-07 14:01:15 +00:00
|
|
|
--disable-lzmainfo \
|
|
|
|
--disable-ifunc
|
2023-12-12 10:55:27 +00:00
|
|
|
|
2018-11-02 23:51:39 +00:00
|
|
|
make clean
|
2023-12-12 10:55:27 +00:00
|
|
|
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 "{}" \;
|