File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -11,9 +11,9 @@ RUN dpkg --add-architecture i386 && \
11
11
RUN apt-get update && apt-get install --no-install-recommends -y \
12
12
git ca-certificates \
13
13
make automake libtool pkg-config dpkg-dev valgrind qemu-user \
14
- gcc clang llvm libc6-dbg \
14
+ gcc clang llvm libclang-rt-dev libc6-dbg \
15
15
g++ \
16
- gcc-i686-linux-gnu libc6-dev-i386-cross libc6-dbg:i386 libubsan1:i386 libasan6 :i386 \
16
+ gcc-i686-linux-gnu libc6-dev-i386-cross libc6-dbg:i386 libubsan1:i386 libasan8 :i386 \
17
17
gcc-s390x-linux-gnu libc6-dev-s390x-cross libc6-dbg:s390x \
18
18
gcc-arm-linux-gnueabihf libc6-dev-armhf-cross libc6-dbg:armhf \
19
19
gcc-aarch64-linux-gnu libc6-dev-arm64-cross libc6-dbg:arm64 \
@@ -26,6 +26,9 @@ WORKDIR /root
26
26
# The "wine" package provides a convience wrapper that we need
27
27
RUN apt-get update && apt-get install --no-install-recommends -y \
28
28
git ca-certificates wine64 wine python3-simplejson python3-six msitools winbind procps && \
29
+ # Workaround for `wine` package failure to employ the Debian alternatives system properly.
30
+ ln -s /usr/lib/wine/wine64 /usr/bin/wine64 && \
31
+ # Set of tools for using MSVC on Linux.
29
32
git clone https://github.com/mstorsjo/msvc-wine && \
30
33
mkdir /opt/msvc && \
31
34
python3 msvc-wine/vsdownload.py --accept-license --dest /opt/msvc Microsoft.VisualStudio.Workload.VCTools && \
You can’t perform that action at this time.
0 commit comments