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 6ea17e8 commit 244e219Copy full SHA for 244e219
other/docker/windows/get_packages.sh
@@ -25,12 +25,16 @@ if [ "$SUPPORT_ARCH_i686" = "true" ]; then
25
apt-get install -y \
26
g++-mingw-w64-i686 \
27
gcc-mingw-w64-i686
28
+ update-alternatives --set i686-w64-mingw32-gcc /usr/bin/i686-w64-mingw32-gcc-posix
29
+ update-alternatives --set i686-w64-mingw32-g++ /usr/bin/i686-w64-mingw32-g++-posix
30
fi
31
32
if [ "$SUPPORT_ARCH_x86_64" = "true" ]; then
33
34
g++-mingw-w64-x86-64 \
35
gcc-mingw-w64-x86-64
36
+ update-alternatives --set x86_64-w64-mingw32-gcc /usr/bin/x86_64-w64-mingw32-gcc-posix
37
+ update-alternatives --set x86_64-w64-mingw32-g++ /usr/bin/x86_64-w64-mingw32-g++-posix
38
39
40
# Packages needed for running toxcore tests
0 commit comments