Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Advantage of winelib?

Are there any advantages to compiling my Windows application with winelib for Linux users? Why not just give them the .exe and let them run it with Wine? Seems just like extra work for no gain.

like image 808
davr Avatar asked Dec 20 '09 22:12

davr


1 Answers

One good reason is that it might provide some insurance against regressions in Wine. If you test your code with version A of Winelib and statically link that version with your program, then regressions in a newer version of Wine can't break you.

like image 109
dsimcha Avatar answered Nov 15 '22 19:11

dsimcha