aboutsummaryrefslogtreecommitdiffstats
path: root/llvm.dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'llvm.dockerfile')
-rw-r--r--llvm.dockerfile13
1 files changed, 0 insertions, 13 deletions
diff --git a/llvm.dockerfile b/llvm.dockerfile
deleted file mode 100644
index a770b18..0000000
--- a/llvm.dockerfile
+++ /dev/null
@@ -1,13 +0,0 @@
-
-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