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 "---------------------------------------------------------------"
|
|
|
|
|
2016-12-27 17:13:07 +00:00
|
|
|
if [ -z "${SANITIZER_FLAGS-}" ]; then
|
2016-12-02 18:58:51 +00:00
|
|
|
FLAGS_VAR="SANITIZER_FLAGS_${SANITIZER}"
|
2017-05-08 18:17:27 +00:00
|
|
|
export SANITIZER_FLAGS=${!FLAGS_VAR-}
|
2016-12-02 18:58:51 +00:00
|
|
|
fi
|
|
|
|
|
2017-01-05 21:27:53 +00:00
|
|
|
# compile script might override environment, use . to call it.
|
|
|
|
. compile_${FUZZING_ENGINE}
|
2016-07-20 21:58:10 +00:00
|
|
|
|
2016-08-15 22:24:03 +00:00
|
|
|
if [[ $SANITIZER_FLAGS = *sanitize=memory* ]]
|
|
|
|
then
|
|
|
|
# Take all libraries from lib/msan
|
2016-12-16 04:57:07 +00:00
|
|
|
# export CXXFLAGS_EXTRA="-L/usr/msan/lib $CXXFLAGS_EXTRA"
|
2016-12-16 04:57:29 +00:00
|
|
|
cp -R /usr/msan/lib/* /usr/lib/
|
2016-08-15 22:24:03 +00:00
|
|
|
fi
|
|
|
|
|
2017-05-08 18:17:27 +00:00
|
|
|
# Coverage flag overrides.
|
|
|
|
COVERAGE_FLAGS_VAR="COVERAGE_FLAGS_$SANITIZER"
|
|
|
|
if [[ -n ${!COVERAGE_FLAGS_VAR-} ]]
|
|
|
|
then
|
|
|
|
export COVERAGE_FLAGS="${!COVERAGE_FLAGS_VAR}"
|
|
|
|
fi
|
|
|
|
|
2016-12-13 18:37:03 +00:00
|
|
|
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
|
|
|
|
|
|
|
echo "CC=$CC"
|
|
|
|
echo "CXX=$CXX"
|
|
|
|
echo "CFLAGS=$CFLAGS"
|
|
|
|
echo "CXXFLAGS=$CXXFLAGS"
|
2016-08-08 02:53:25 +00:00
|
|
|
|
|
|
|
echo "---------------------------------------------------------------"
|
|
|
|
|
2016-12-27 17:39:59 +00:00
|
|
|
BUILD_CMD="bash -eux $SRC/build.sh"
|
2017-03-04 00:37:19 +00:00
|
|
|
if [ "${BUILD_UID-0}" -ne "0" ]; then
|
2017-02-11 15:57:49 +00:00
|
|
|
adduser -u $BUILD_UID --disabled-password --gecos '' builder
|
2016-12-27 21:47:44 +00:00
|
|
|
chown -R builder $SRC $OUT $WORK
|
2016-12-21 23:01:44 +00:00
|
|
|
su -c "$BUILD_CMD" builder
|
|
|
|
else
|
|
|
|
$BUILD_CMD
|
|
|
|
fi
|