diff options
author | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2015-02-13 21:38:11 +0100 |
---|---|---|
committer | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2015-02-13 21:38:11 +0100 |
commit | faa5f51b4bb46ed652e1ad31119df3f9086f7453 (patch) | |
tree | 8622b6c4f3e716f4d286b49e1778e8deea75ef09 /tools | |
parent | bb62706f8428357d3f96d6de9e65c8fc6b439b9c (diff) |
Renaming the docker image to grpc_clang, and optimizing the build a bit.
Diffstat (limited to 'tools')
-rw-r--r-- | tools/dockerfile/grpc_clang/Dockerfile (renamed from tools/dockerfile/msan_cxx/Dockerfile) | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tools/dockerfile/msan_cxx/Dockerfile b/tools/dockerfile/grpc_clang/Dockerfile index d12cee6b5d..0928121755 100644 --- a/tools/dockerfile/msan_cxx/Dockerfile +++ b/tools/dockerfile/grpc_clang/Dockerfile @@ -23,7 +23,10 @@ RUN mv libcxx llvm/projects RUN mv libcxxabi llvm/projects RUN mkdir llvm-build -RUN cd llvm-build && cmake ../llvm +RUN cd llvm-build && cmake \ + -DCMAKE_BUILD_TYPE:STRING=Release \ + -DLLVM_TARGETS_TO_BUILD:STRING=X86 \ + ../llvm RUN make -C llvm-build && make -C llvm-build install && rm -rf llvm-build CMD ["bash"] |