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.
|
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
|
|
|
|
LLVM_DEP_PACKAGES="build-essential make cmake ninja-build git python2.7"
|
|
|
|
apt-get install -y $LLVM_DEP_PACKAGES
|
|
|
|
|
|
|
|
# Checkout
|
2016-11-18 19:16:38 +00:00
|
|
|
cd $SRC && git clone --depth 1 http://llvm.org/git/llvm.git
|
|
|
|
cd $SRC/llvm/tools && git clone --depth 1 http://llvm.org/git/clang.git
|
|
|
|
cd $SRC/llvm/projects && git clone --depth 1 http://llvm.org/git/compiler-rt.git
|
|
|
|
cd $SRC/llvm/projects && git clone --depth 1 http://llvm.org/git/libcxx.git
|
|
|
|
cd $SRC/llvm/projects && git clone --depth 1 http://llvm.org/git/libcxxabi.git
|
2016-10-07 19:05:55 +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-10-07 19:05:55 +00:00
|
|
|
# Copy libfuzzer sources
|
2016-11-18 19:16:38 +00:00
|
|
|
mkdir $SRC/libfuzzer
|
|
|
|
cp -r $SRC/llvm/lib/Fuzzer/* $SRC/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
|
2016-10-07 19:05:55 +00:00
|
|
|
apt-get remove --purge -y $LLVM_DEP_PACKAGES
|
|
|
|
apt-get autoremove -y
|