Some checks failed
CI / check (ubuntu-latest, x86_64-unknown-linux-gnu) (push) Successful in 9m39s
Deploy Website / deploy (push) Has been skipped
CI / check (macos-14, aarch64-apple-darwin) (push) Has been cancelled
CI / check (windows-latest, x86_64-pc-windows-msvc) (push) Has been cancelled
14 lines
478 B
Docker
14 lines
478 B
Docker
FROM ghcr.io/cross-rs/x86_64-pc-windows-gnu:main
|
|
|
|
RUN apt-get update && \
|
|
apt-get install -y --no-install-recommends \
|
|
cmake \
|
|
clang \
|
|
libclang-dev \
|
|
mingw-w64-tools \
|
|
mingw-w64-x86-64-dev \
|
|
&& rm -rf /var/lib/apt/lists/* \
|
|
&& ln -sf windows.h /usr/x86_64-w64-mingw32/include/Windows.h \
|
|
&& ln -sf winsock2.h /usr/x86_64-w64-mingw32/include/WinSock2.h \
|
|
&& ln -sf ws2tcpip.h /usr/x86_64-w64-mingw32/include/WS2tcpip.h
|