2016-10-07 19:05:55 +00:00
|
|
|
#!/bin/bash -eux
|
|
|
|
# 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.
|
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
|
2017-05-31 19:30:29 +00:00
|
|
|
LLVM_DEP_PACKAGES="build-essential make cmake ninja-build git subversion python2.7"
|
2016-10-07 19:05:55 +00:00
|
|
|
apt-get install -y $LLVM_DEP_PACKAGES
|
|
|
|
|
|
|
|
# Checkout
|
2017-05-31 19:30:29 +00:00
|
|
|
|
|
|
|
# Use chromium's clang revision
|
|
|
|
mkdir $SRC/chromium_tools
|
|
|
|
cd $SRC/chromium_tools
|
|
|
|
git clone https://chromium.googlesource.com/chromium/src/tools/clang
|
|
|
|
cd clang
|
|
|
|
|
2018-06-27 15:27:13 +00:00
|
|
|
OUR_LLVM_REVISION=334100 # For manual bumping.
|
2018-07-26 17:01:41 +00:00
|
|
|
FORCE_OUR_REVISION=0 # To allow for manual downgrades.
|
2017-05-31 19:30:29 +00:00
|
|
|
LLVM_REVISION=$(grep -Po "CLANG_REVISION = '\K\d+(?=')" scripts/update.py)
|
2017-10-11 15:19:21 +00:00
|
|
|
|
2018-06-25 04:25:35 +00:00
|
|
|
if [ $OUR_LLVM_REVISION -gt $LLVM_REVISION ] || [ $FORCE_OUR_REVISION -ne 0 ]; then
|
2017-10-11 15:19:21 +00:00
|
|
|
LLVM_REVISION=$OUR_LLVM_REVISION
|
|
|
|
fi
|
|
|
|
|
2017-05-31 19:30:29 +00:00
|
|
|
echo "Using LLVM revision: $LLVM_REVISION"
|
|
|
|
|
2017-08-29 23:17:44 +00:00
|
|
|
cd $SRC && svn co https://llvm.org/svn/llvm-project/llvm/trunk@$LLVM_REVISION llvm
|
|
|
|
cd $SRC/llvm/tools && svn co https://llvm.org/svn/llvm-project/cfe/trunk@$LLVM_REVISION clang
|
|
|
|
cd $SRC/llvm/projects && svn co https://llvm.org/svn/llvm-project/compiler-rt/trunk@$LLVM_REVISION compiler-rt
|
|
|
|
cd $SRC/llvm/projects && svn co https://llvm.org/svn/llvm-project/libcxx/trunk@$LLVM_REVISION libcxx
|
|
|
|
cd $SRC/llvm/projects && svn co https://llvm.org/svn/llvm-project/libcxxabi/trunk@$LLVM_REVISION libcxxabi
|
2016-10-07 19:05:55 +00:00
|
|
|
|
2016-08-15 22:24:03 +00:00
|
|
|
# Build & install
|
2016-11-18 19:45:51 +00:00
|
|
|
mkdir -p $WORK/llvm
|
|
|
|
cd $WORK/llvm
|
2016-10-07 19:05:55 +00:00
|
|
|
cmake -G "Ninja" \
|
|
|
|
-DLIBCXX_ENABLE_SHARED=OFF -DLIBCXX_ENABLE_STATIC_ABI_LIBRARY=ON \
|
|
|
|
-DCMAKE_BUILD_TYPE=Release -DLLVM_TARGETS_TO_BUILD="X86" \
|
2016-11-18 19:16:38 +00:00
|
|
|
$SRC/llvm
|
2016-10-07 19:05:55 +00:00
|
|
|
ninja
|
|
|
|
ninja install
|
2016-11-18 19:45:51 +00:00
|
|
|
rm -rf $WORK/llvm
|
|
|
|
|
2016-08-15 22:24:03 +00:00
|
|
|
mkdir -p $WORK/msan
|
|
|
|
cd $WORK/msan
|
2018-02-06 23:51:47 +00:00
|
|
|
|
|
|
|
# https://github.com/google/oss-fuzz/issues/1099
|
|
|
|
cat <<EOF > $WORK/msan/blacklist.txt
|
|
|
|
fun:__gxx_personality_*
|
|
|
|
EOF
|
|
|
|
|
2016-08-15 22:24:03 +00:00
|
|
|
cmake -G "Ninja" \
|
|
|
|
-DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ \
|
|
|
|
-DLLVM_USE_SANITIZER=Memory -DCMAKE_INSTALL_PREFIX=/usr/msan/ \
|
|
|
|
-DLIBCXX_ENABLE_SHARED=OFF -DLIBCXX_ENABLE_STATIC_ABI_LIBRARY=ON \
|
|
|
|
-DCMAKE_BUILD_TYPE=Release -DLLVM_TARGETS_TO_BUILD="X86" \
|
2018-02-06 23:51:47 +00:00
|
|
|
-DCMAKE_CXX_FLAGS="-fsanitize-blacklist=$WORK/msan/blacklist.txt" \
|
2016-08-15 22:24:03 +00:00
|
|
|
$SRC/llvm
|
|
|
|
ninja cxx
|
|
|
|
ninja install-cxx
|
|
|
|
rm -rf $WORK/msan
|
|
|
|
|
2017-05-31 19:30:29 +00:00
|
|
|
# Pull trunk libfuzzer.
|
2017-08-29 23:17:44 +00:00
|
|
|
cd $SRC && svn co https://llvm.org/svn/llvm-project/compiler-rt/trunk/lib/fuzzer libfuzzer
|
2016-10-07 19:05:55 +00:00
|
|
|
|
2016-11-18 19:16:38 +00:00
|
|
|
cp $SRC/llvm/tools/sancov/coverage-report-server.py /usr/local/bin/
|
2016-11-04 03:13:29 +00:00
|
|
|
|
2016-10-07 19:05:55 +00:00
|
|
|
# Cleanup
|
2016-11-18 19:16:38 +00:00
|
|
|
rm -rf $SRC/llvm
|
2017-05-31 19:30:29 +00:00
|
|
|
rm -rf $SRC/chromium_tools
|
2016-10-07 19:05:55 +00:00
|
|
|
apt-get remove --purge -y $LLVM_DEP_PACKAGES
|
|
|
|
apt-get autoremove -y
|