Skip to content

Commit

Permalink
don't fail when wineboot fails
Browse files Browse the repository at this point in the history
  • Loading branch information
Emilgardis committed Nov 18, 2023
1 parent 44011c8 commit 0361861
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 0361861

Please sign in to comment.