diff options
-rw-r--r-- | llvm.dockerfile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/llvm.dockerfile b/llvm.dockerfile new file mode 100644 index 0000000..a770b18 --- /dev/null +++ b/llvm.dockerfile @@ -0,0 +1,13 @@ + +FROM ubuntu:18.04 +RUN apt update && apt upgrade + +RUN wget https://apt.llvm.org/llvm.sh \ + && chmod +x ./llvm.sh \ + && ./llvm.sh 11 + +RUN git clone https://github.com/bloodstalker/cgrep \ + && cd cgrep \ + && git submodule init \ + && git submodule update \ + && make CXX=clang-11 LLVM_CONF=llvm-config-11 |