aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/dockerfile/test/cxx_jessie_x64/Dockerfile
diff options
context:
space:
mode:
authorGravatar Nicolas Noble <nicolasnoble@users.noreply.github.com>2016-03-29 13:17:16 -0700
committerGravatar Nicolas Noble <nicolasnoble@users.noreply.github.com>2016-03-29 13:17:16 -0700
commitf1637b8df0d6ef415f57ca08dc870e23dfbea4ef (patch)
tree494d74d6daad6f0e41e8a94f614f36f528c83990 /tools/dockerfile/test/cxx_jessie_x64/Dockerfile
parent6e6230a6e4715be6b8ff0ab489e35a4e640bb50b (diff)
parent67593ffc3459331bc53ac59de59ecc005ee1ad10 (diff)
Merge pull request #5846 from ctiller/fuzzy-bits
Fuzzer support
Diffstat (limited to 'tools/dockerfile/test/cxx_jessie_x64/Dockerfile')
-rw-r--r--tools/dockerfile/test/cxx_jessie_x64/Dockerfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/dockerfile/test/cxx_jessie_x64/Dockerfile b/tools/dockerfile/test/cxx_jessie_x64/Dockerfile
index b848f233b7..6c7aece4ff 100644
--- a/tools/dockerfile/test/cxx_jessie_x64/Dockerfile
+++ b/tools/dockerfile/test/cxx_jessie_x64/Dockerfile
@@ -68,7 +68,7 @@ RUN apt-get update && apt-get install -y time && apt-get clean
RUN apt-get update && apt-get -y install libgflags-dev libgtest-dev libc++-dev clang && apt-get clean
#=================
-# Update clang to a version with improved tsan
+# Update clang to a version with improved tsan and fuzzing capabilities
RUN apt-get update && apt-get -y install python cmake && apt-get clean
@@ -98,7 +98,7 @@ RUN cd llvm-build && cmake \
-DCMAKE_INSTALL_PREFIX:STRING=/usr \
-DLLVM_TARGETS_TO_BUILD:STRING=X86 \
../llvm
-RUN make -C llvm-build && make -C llvm-build install && rm -rf llvm-build
+RUN make -C llvm-build -j 12 && make -C llvm-build install && rm -rf llvm-build
# Prepare ccache
RUN ln -s /usr/bin/ccache /usr/local/bin/gcc