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-11-19 00:46:04 +00:00
|
|
|
pushd . > /dev/null 2>&1
|
2016-11-17 17:49:34 +00:00
|
|
|
|
2016-10-17 21:32:10 +00:00
|
|
|
echo -n "Compiling libFuzzer into /usr/lib/libfuzzer.a ..."
|
2016-11-18 19:16:38 +00:00
|
|
|
mkdir -p $WORK/libfuzzer
|
|
|
|
cd $WORK/libfuzzer
|
|
|
|
$CXX $CXXFLAGS -std=c++11 $SANITIZER_FLAGS -c $SRC/libfuzzer/*.cpp -I$SRC/libfuzzer
|
2016-11-18 20:23:23 +00:00
|
|
|
ar ruv /usr/lib/libfuzzer.a $WORK/libfuzzer/*.o > /dev/null 2>&1
|
|
|
|
echo " done."
|
2016-07-20 21:58:10 +00:00
|
|
|
|
2016-08-08 02:53:25 +00:00
|
|
|
export CFLAGS="$CFLAGS $SANITIZER_FLAGS $COV_FLAGS"
|
|
|
|
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-11-17 17:49:34 +00:00
|
|
|
popd >/dev/null 2>&1
|
2016-11-18 19:16:38 +00:00
|
|
|
bash -x $SRC/build.sh
|