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 2c1a464 commit ca30386Copy full SHA for ca30386
Dockerfile.cross
@@ -16,6 +16,13 @@ RUN apt-get update -qq && \
16
apt-get clean -y && \
17
rm -rf /var/lib/apt/lists/*
18
19
+RUN cd /opt && \
20
+ wget https://github.com/Kitware/CMake/releases/download/v3.16.2/cmake-3.16.2-Linux-x86_64.tar.gz && \
21
+ tar -zxvf cmake-*.tar.gz && \
22
+ rm cmake-*.tar.gz && \
23
+ mv cmake-* cmake
24
+ENV PATH=/opt/cmake/bin:$PATH
25
+
26
ARG CROSS_ARCH=x86_64
27
ENV CROSS_TOOLCHAIN_PREFIX=/opt/llvm-mingw-$CROSS_ARCH
28
0 commit comments