aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbloodstalker <thabogre@gmail.com>2020-05-09 12:56:23 +0000
committerbloodstalker <thabogre@gmail.com>2020-05-09 12:56:23 +0000
commit04b0caffbd84eb434e8248a12e3a381a377672f9 (patch)
treed7d94aff9f895004a6ee7b392553c305645b26da
parentInitial commit (diff)
downloaddockerimages-04b0caffbd84eb434e8248a12e3a381a377672f9.tar.gz
dockerimages-04b0caffbd84eb434e8248a12e3a381a377672f9.zip
update
-rw-r--r--llvm.dockerfile13
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