mstorsjo / msvc-wine

Scripts for setting up and running MSVC in Wine on Linux
Other
627 stars 80 forks source link

there seems to be no wine64 in ubuntu23.10 #99

Closed ririyeye closed 7 months ago

ririyeye commented 9 months ago

only wine not wine64 in new version ubuntu 23.10 i add a symbol link wine64 -> wine in system

johnsonjh commented 7 months ago

@ririyeye @mstorsjo

Instead of using ...

wine64

... the shell scripts could be changed to use

$(command -v wine64 || command -v wine || false)

This would work on the new Ubuntu (and other) systems, and it wouldn't cause regressions (e.g. https://github.com/mstorsjo/msvc-wine/issues/30) on older installations.

johnsonjh commented 7 months ago

Opened https://github.com/mstorsjo/msvc-wine/pull/107 to test.