wine64 is needed instead of wine for x64 toolchain on Ubuntu 20.04
dmikushin opened this issue · 2 comments
dmikushin commented
Hi @mstorsjo ,
On Ubuntu 20.04 wine is no longer able to execute 64-bit Windows apps. In order to get it to work, I needed to call wine64 instead of wine explicitly. The change to the script could be like this:
Small fix to the Martin's original scripts: wine64 should be used for x64.
RUN sed -i "s/wine /win64 /" /opt/msvc/bin/x64/wine-msvc.sh
Thanks!you are so great。(c)
mstorsjo commented
On Ubuntu 20.04 wine is no longer able to execute 64-bit Windows apps.
That depends on how you install it. See
Lines 1 to 12 in 12f63ec
i386
and installing the full wine with all the tools that it expects.
However you're right that we could do with just using the wine64 frontend and simplifying the install - I pushed a commit that does that: d7beff3
johnsonjh commented
Looks like this is fixed and can be closed.