2020-07-19 20:01:12 +00:00
|
|
|
#!/bin/bash -eu
|
|
|
|
# Copyright 2020 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.
|
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
|
|
|
|
wget -qO- https://botan.randombit.net/releases/Botan-2.12.1.tar.xz | tar xvJ
|
|
|
|
cd Botan-2.12.1
|
|
|
|
./configure.py --prefix=/usr --cc-bin=$CXX --cc-abi-flags="$CXXFLAGS" \
|
|
|
|
--disable-modules=locking_allocator \
|
|
|
|
--unsafe-fuzzer-mode --build-fuzzers=libfuzzer \
|
|
|
|
--with-fuzzer-lib='FuzzingEngine'
|
|
|
|
make
|
|
|
|
make install
|
|
|
|
cd ..
|
|
|
|
|
2020-07-27 18:54:20 +00:00
|
|
|
# -DENABLE_SANITIZERS=0 because oss-fuzz will add the sanitizer flags in CFLAGS
|
|
|
|
# See https://github.com/google/oss-fuzz/pull/4189 to explain CMAKE_C_LINK_EXECUTABLE
|
|
|
|
|
2020-07-19 20:01:12 +00:00
|
|
|
mkdir rnp-build
|
|
|
|
cd rnp-build
|
|
|
|
cmake \
|
2020-07-27 18:54:20 +00:00
|
|
|
-DENABLE_SANITIZERS=0 \
|
|
|
|
-DENABLE_FUZZERS=1 \
|
2020-07-19 20:01:12 +00:00
|
|
|
-DCMAKE_C_COMPILER=$CC \
|
|
|
|
-DCMAKE_CXX_COMPILER=$CXX \
|
2020-07-27 18:54:20 +00:00
|
|
|
-DCMAKE_C_LINK_EXECUTABLE="$CXX <FLAGS> <CMAKE_C_LINK_FLAGS> <LINK_FLAGS> <OBJECTS> -o <TARGET> <LINK_LIBRARIES>" \
|
2020-07-19 20:01:12 +00:00
|
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
|
|
-DBUILD_SHARED_LIBS=on \
|
|
|
|
-DBUILD_TESTING=off \
|
2020-07-27 18:54:20 +00:00
|
|
|
-DCMAKE_VERBOSE_MAKEFILE:BOOL=ON \
|
2020-07-19 20:01:12 +00:00
|
|
|
../rnp/
|
|
|
|
make
|
|
|
|
|
|
|
|
FUZZERS="fuzz_dump fuzz_keyring"
|
|
|
|
for f in $FUZZERS; do
|
|
|
|
cp src/fuzzing/$f "${OUT}/"
|
|
|
|
chrpath -r '$ORIGIN/lib' "${OUT}/$f"
|
|
|
|
done
|
|
|
|
|
|
|
|
mkdir -p "${OUT}/lib"
|
|
|
|
cp src/lib/librnp-0.so.0 "${OUT}/lib/"
|
|
|
|
cp /usr/lib/libbotan-2.so.12 "${OUT}/lib/"
|
|
|
|
cp /lib/x86_64-linux-gnu/libjson-c.so.2 "${OUT}/lib/"
|