mirror of https://github.com/google/oss-fuzz.git
38 lines
1.2 KiB
Bash
Executable File
38 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.
|
|
#
|
|
################################################################################
|
|
|
|
tar xzf bzip2-*.tar.gz && rm -f bzip2-*.tar.gz
|
|
cd bzip2-*
|
|
SRCL=(blocksort.o huffman.o crctable.o randtable.o compress.o decompress.o bzlib.o)
|
|
|
|
for source in ${SRCL[@]}; do
|
|
name=$(basename $source .o)
|
|
$CC $CFLAGS -c ${name}.c
|
|
done
|
|
rm -f libbz2.a
|
|
ar cq libbz2.a ${SRCL[@]} && ranlib libbz2.a
|
|
|
|
# build fuzzers
|
|
for file in $SRC/*.c;
|
|
do
|
|
name=$(basename $file .c)
|
|
$CC $CFLAGS -c -I . $SRC/${name}.c -o $OUT/${name}.o
|
|
$CXX $CXXFLAGS -o $OUT/${name} $OUT/${name}.o $LIB_FUZZING_ENGINE \
|
|
libbz2.a
|
|
rm -f $OUT/${name}.o
|
|
done
|