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}"
|
2016-12-07 06:18:45 +00:00
|
|
|
export SANITIZER_FLAGS=$(echo ${!FLAGS_VAR})
|
2016-12-02 18:58:51 +00:00
|
|
|
fi
|
|
|
|
|
2016-12-07 06:18:45 +00:00
|
|
|
bash 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
|
|
|
|
|
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
|
|
|
|
2016-08-15 22:24:03 +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 "---------------------------------------------------------------"
|
|
|
|
|
2016-12-21 23:01:44 +00:00
|
|
|
BUILD_CMD="bash -x $SRC/build.sh"
|
2016-12-27 17:13:07 +00:00
|
|
|
if [ -n "${BUILD_UID-}" ]; then
|
2016-12-21 23:01:44 +00:00
|
|
|
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
|