Skip to content
Snippets Groups Projects
Commit bf275ece authored by Craig Tiller's avatar Craig Tiller
Browse files

Merge pull request #511 from nicolasnoble/msan-cxx

Adding a Dockerfile script that can build a docker image with an msan-compatible C++ compiler.
parents bc91e25c a339c169
No related branches found
No related tags found
No related merge requests found
FROM ubuntu:latest
RUN apt-get update && apt-get install -y \
cmake \
g++ \
gcc \
git \
make \
python \
&& apt-get clean
RUN git clone -b release_36 http://llvm.org/git/llvm.git
RUN git clone -b release_36 http://llvm.org/git/clang.git
RUN git clone -b release_36 http://llvm.org/git/compiler-rt.git
RUN git clone -b release_36 http://llvm.org/git/clang-tools-extra.git
RUN git clone -b release_36 http://llvm.org/git/libcxx.git
RUN git clone -b release_36 http://llvm.org/git/libcxxabi.git
RUN mv clang llvm/tools
RUN mv compiler-rt llvm/projects
RUN mv clang-tools-extra llvm/tools/clang/tools
RUN mv libcxx llvm/projects
RUN mv libcxxabi llvm/projects
RUN mkdir llvm-build
RUN cd llvm-build && cmake ../llvm
RUN make -C llvm-build && make -C llvm-build install && rm -rf llvm-build
CMD ["bash"]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment