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 94127cb commit 88182e5Copy full SHA for 88182e5
Dockerfile.profile
@@ -0,0 +1,12 @@
1
+ARG BASE=mstorsjo/llvm-mingw:dev
2
+FROM $BASE
3
+
4
+COPY build-compiler-rt.sh build-llvm.sh ./
5
+RUN ./build-compiler-rt.sh --native $TOOLCHAIN_PREFIX
6
7
+RUN export PATH=$TOOLCHAIN_PREFIX/bin:$PATH && \
8
+ ./build-llvm.sh /tmp/dummy-prefix --disable-lldb --disable-clang-tools-extra --with-clang --disable-dylib --instrumented
9
10
+COPY pgo-training.sh pgo-training.make ./
11
+COPY test/ ./test/
12
+RUN ./pgo-training.sh llvm-project/llvm/build-instrumented $TOOLCHAIN_PREFIX
0 commit comments