2016-07-22 21:05:53 +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-07-22 20:24:49 +00:00
|
|
|
export CC="clang"
|
|
|
|
export CXX="clang++"
|
|
|
|
export CCC="clang++"
|
2016-07-20 21:58:10 +00:00
|
|
|
|
|
|
|
pushd $PWD > /dev/null
|
|
|
|
echo -n "Compiling libFuzzer..."
|
|
|
|
cd /work/libfuzzer
|
2016-07-22 20:24:49 +00:00
|
|
|
$CXX -g -std=c++11 -stdlib=libc++ $sanitizer_flags -c /src/libfuzzer/*.cpp -I/src/libfuzzer
|
2016-07-20 21:58:10 +00:00
|
|
|
echo "Done."
|
|
|
|
popd > /dev/null
|
|
|
|
|
|
|
|
export CFLAGS="-g $sanitizer_flags $cov_flags"
|
2016-07-28 20:46:35 +00:00
|
|
|
export LIBCXX_FLAGS="-stdlib=libc++"
|
2016-07-20 21:58:10 +00:00
|
|
|
export CXXFLAGS="$CFLAGS $LIBCXX_FLAGS "
|
2016-08-05 23:29:38 +00:00
|
|
|
export LDFLAGS="-nodefaultlibs -Wl,-Bdynamic -lpthread -lrt -lm -ldl -lgcc_s -lgcc -lc -Wl,-Bstatic -lc++ -lc++abi"
|
2016-07-22 21:05:53 +00:00
|
|
|
|
|
|
|
echo "CC=$CC"
|
|
|
|
echo "CXX=$CXX"
|
|
|
|
echo "CFLAGS=$CFLAGS"
|
|
|
|
echo "CXXFLAGS=$CXXFLAGS"
|