oss-fuzz/infra/base-images/base-libfuzzer/compile

54 lines
1.6 KiB
Plaintext
Raw Normal View History

2016-11-18 19:44:37 +00:00
#!/bin/bash -eu
2016-07-20 21:58:10 +00:00
# Copyright 2016 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.
#
################################################################################
2016-08-06 17:29:42 +00:00
2016-08-08 02:53:25 +00:00
echo "---------------------------------------------------------------"
if [ -z "${SANITIZER_FLAGS-}" ]; then
FLAGS_VAR="SANITIZER_FLAGS_${SANITIZER}"
export SANITIZER_FLAGS=$(echo ${!FLAGS_VAR})
fi
bash compile_${FUZZING_ENGINE}
2016-07-20 21:58:10 +00:00
if [[ $SANITIZER_FLAGS = *sanitize=memory* ]]
then
# Take all libraries from lib/msan
# export CXXFLAGS_EXTRA="-L/usr/msan/lib $CXXFLAGS_EXTRA"
2016-12-16 04:57:29 +00:00
cp -R /usr/msan/lib/* /usr/lib/
fi
export CFLAGS="$CFLAGS $SANITIZER_FLAGS $COVERAGE_FLAGS"
2016-08-08 02:53:25 +00:00
export CXXFLAGS="$CFLAGS $CXXFLAGS_EXTRA"
2016-07-22 21:05:53 +00:00
2016-07-22 21:05:53 +00:00
echo "CC=$CC"
echo "CXX=$CXX"
echo "CFLAGS=$CFLAGS"
echo "CXXFLAGS=$CXXFLAGS"
2016-08-08 02:53:25 +00:00
echo "---------------------------------------------------------------"
BUILD_CMD="bash -x $SRC/build.sh"
if [ -n "${BUILD_UID-}" ]; then
adduser -u $BUILD_UID --disabled-password --no-create-home --gecos '' builder
chown -R builder $SRC
chown builder $OUT
su -c "$BUILD_CMD" builder
else
$BUILD_CMD
fi