We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 88182e5 commit 51314dfCopy full SHA for 51314df
Dockerfile.pgo
@@ -0,0 +1,11 @@
1
+ARG BASE=mstorsjo/llvm-mingw:dev
2
+FROM $BASE
3
+
4
+COPY profile.profdata ./
5
6
+COPY build-llvm.sh build-lldb-mi.sh strip-llvm.sh ./
7
+RUN export PATH=$TOOLCHAIN_PREFIX/bin:$PATH && \
8
+ cp -a $TOOLCHAIN_PREFIX /opt/llvm-mingw-pgo && \
9
+ ./build-llvm.sh /opt/llvm-mingw-pgo --with-clang --thinlto --pgo && \
10
+ ./build-lldb-mi.sh /opt/llvm-mingw-pgo && \
11
+ ./strip-llvm.sh /opt/llvm-mingw-pgo
0 commit comments