aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Matt Morehouse <mascasa@google.com>2019-04-08 12:30:36 -0700
committerGravatar Kostya Serebryany <konstantin.s.serebryany@gmail.com>2019-04-08 12:30:36 -0700
commit6c3880cfd52b5cc1f105c1293354eb454459201f (patch)
tree2fb89f78d55a3afe782b9561be34fd7ec102a7f6
parenteb2795c8304ee7d856a71a7b855a01e31d250b0c (diff)
[llvm] Remove proto fuzzers. (#2301)
Proto fuzzers are slow and haven't found bugs in a long time. Their builds are also hard to maintain since they build in a different configuration than any of the LLVM build bots.
-rw-r--r--projects/llvm/Dockerfile2
-rw-r--r--projects/llvm/build.sh15
2 files changed, 0 insertions, 17 deletions
diff --git a/projects/llvm/Dockerfile b/projects/llvm/Dockerfile
index c11b25c6..fa90d32a 100644
--- a/projects/llvm/Dockerfile
+++ b/projects/llvm/Dockerfile
@@ -21,8 +21,6 @@ RUN apt-get install -y autoconf automake libtool curl make g++ unzip wget git \
binutils liblzma-dev libz-dev python-all cmake ninja-build subversion \
pkg-config
-# Get protobuf
-RUN wget -qO- https://github.com/google/protobuf/releases/download/v3.3.0/protobuf-cpp-3.3.0.tar.gz | tar zxf -
# Get LLVM
RUN svn co http://llvm.org/svn/llvm-project/llvm/trunk llvm > svn.log 2>&1
RUN cd llvm/tools && svn co http://llvm.org/svn/llvm-project/cfe/trunk clang -r $(cd ../ && svn info | grep Revision | awk '{print $2}') >> svn.log 2>&1
diff --git a/projects/llvm/build.sh b/projects/llvm/build.sh
index 7397a34b..3abff9a4 100644
--- a/projects/llvm/build.sh
+++ b/projects/llvm/build.sh
@@ -16,22 +16,8 @@
#
################################################################################
-build_protobuf() {
- ./autogen.sh
- ./configure --disable-shared
- make -j $(nproc)
- make check -j $(nproc)
- make install
- ldconfig
-}
-
-(cd protobuf-3.3.0 && build_protobuf)
-
readonly FUZZERS=( \
clang-fuzzer \
- clang-proto-fuzzer \
- clang-loop-proto-fuzzer \
- clang-llvm-proto-fuzzer \
clang-format-fuzzer \
clangd-fuzzer \
llvm-itanium-demangle-fuzzer \
@@ -58,7 +44,6 @@ cmake -GNinja -DCMAKE_BUILD_TYPE=Release ../llvm \
-DCMAKE_CXX_FLAGS="${CXXFLAGS}" \
-DLLVM_LIB_FUZZING_ENGINE="${LIB_FUZZING_ENGINE}" \
-DLLVM_NO_DEAD_STRIP=ON \
- -DCLANG_ENABLE_PROTO_FUZZER=ON \
-DLLVM_USE_SANITIZER="${LLVM_SANITIZER}" \
-DLLVM_EXPERIMENTAL_TARGETS_TO_BUILD=WebAssembly
for fuzzer in "${FUZZERS[@]}"; do