aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2016-03-29 11:38:24 -0700
committerGravatar Craig Tiller <ctiller@google.com>2016-03-29 11:38:24 -0700
commit67593ffc3459331bc53ac59de59ecc005ee1ad10 (patch)
tree494d74d6daad6f0e41e8a94f614f36f528c83990 /tools
parent34236d5be5e56883c9ff44f0aa8248aac5bce707 (diff)
Fix codegen
Diffstat (limited to 'tools')
-rw-r--r--tools/dockerfile/grpc_interop_stress_cxx/Dockerfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/dockerfile/grpc_interop_stress_cxx/Dockerfile b/tools/dockerfile/grpc_interop_stress_cxx/Dockerfile
index 214747fd4a..556a26ee13 100644
--- a/tools/dockerfile/grpc_interop_stress_cxx/Dockerfile
+++ b/tools/dockerfile/grpc_interop_stress_cxx/Dockerfile
@@ -81,7 +81,7 @@ RUN pip install --upgrade google-api-python-client
#=================
-# 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
@@ -111,7 +111,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
# Define the default command.
CMD ["bash"]