Skip to content

Commit

Permalink
don't fail when wineboot fails (#1373)
Browse files Browse the repository at this point in the history
partially fix for #1372 and fixes #1371
  • Loading branch information
Emilgardis authored Nov 19, 2023
2 parents b9b56d4 + 0361861 commit 96a8da5
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changes/1373.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"type": "fixed",
"description": "fix wineboot silently failing on qemu",
"issues": [1372]
}
3 changes: 2 additions & 1 deletion docker/windows-entry.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ mkdir -p "${HOME}"
export WINEPREFIX=/tmp/wine
mkdir -p "${WINEPREFIX}"
# FIXME: Make the wine prefix initialization faster
wineboot &> /dev/null
# TODO: https://github.com/cross-rs/cross/issues/1372 wine fails on arm64 qemu
wineboot &> /dev/null || true

# Put libstdc++ and some other mingw dlls in WINEPATH
# This must work for x86_64 and i686
Expand Down

0 comments on commit 96a8da5

Please sign in to comment.