Hello fellow Wine users, I have written an app that runs in Windows and I would like to try to get it running under Linux using Wine. So I copied all of my files and binaries from my Windows box to my Linux box (as well as all required DLLs.) So far I have been able to get Wine to come up and start, only giving me: 'FIXME:pthread_rwlock_rdlock' and 'FIXME:pthread_rwlock_unlock' messages. It seems to me that my program is (should be?) running, but I do not see it on the desktop. My questions are: is this a common problem with a solution? If not and if this happens to be the code in my program, is there a way that I can have my program (compiled under windows) output debug information while running with Wine under Linux? Any help would be greatly appreciated, Quentin.
On Wed, 28 Nov 2001, Quentin wrote:> Hello fellow Wine users, > > I have written an app that runs in Windows and I would like to try to get it > running under Linux using Wine. So I copied all of my files and binaries > from my Windows box to my Linux box (as well as all required DLLs.) > > So far I have been able to get Wine to come up and start, only giving me: > 'FIXME:pthread_rwlock_rdlock' and 'FIXME:pthread_rwlock_unlock' messages. > It seems to me that my program is (should be?) running, but I do not see it > on the desktop. > > My questions are: is this a common problem with a solution? If not and if > this happens to be the code in my program, is there a way that I can have my > program (compiled under windows) output debug information while running with > Wine under Linux? > > Any help would be greatly appreciated, > Quentin. >Try how you like wine --debugmsg +relay myapp.exe 2>&1|tee logfile The last bit after the .exe is in case you want to look back in logfile and try to see where it went wrong. Try "man wine" Lawson
most of the majic seems to be getting a .wine/config file that is configured correctly for your system. does Wine have access to a true windows installation? if not do you have the directories setup correctly to run with out one? is it showing correct information for names and paths to your various drives? do you have the dll's that you are calling as native? . . . . look/search thru groups.google.com and see how other people have theirs set up. and if all else fails, read the documentation. :-) On Wednesday 28 November 2001 17:01, you wrote:> Hello fellow Wine users, > > I have written an app that runs in Windows and I would like to try to get > it running under Linux using Wine. So I copied all of my files and > binaries from my Windows box to my Linux box (as well as all required > DLLs.) > > So far I have been able to get Wine to come up and start, only giving me: > 'FIXME:pthread_rwlock_rdlock' and 'FIXME:pthread_rwlock_unlock' messages. > It seems to me that my program is (should be?) running, but I do not see it > on the desktop. > > My questions are: is this a common problem with a solution? If not and if > this happens to be the code in my program, is there a way that I can have > my program (compiled under windows) output debug information while running > with Wine under Linux? > > Any help would be greatly appreciated, > Quentin. > > > _______________________________________________ > wine-users mailing list > wine-users@winehq.com > http://www.winehq.com/mailman/listinfo/wine-users
Hmmm...it would seem to me that rather than copying the binaries and DLL's, you'd want to recompile it using Winelib (assuming it's in C). Anyhow to answer your question, I haven't heard of that symptom. Tons of debugging suggestions in the docos. Quentin wrote:> Hello fellow Wine users, > > I have written an app that runs in Windows and I would like to try to get it > running under Linux using Wine. So I copied all of my files and binaries > from my Windows box to my Linux box (as well as all required DLLs.) > > So far I have been able to get Wine to come up and start, only giving me: > 'FIXME:pthread_rwlock_rdlock' and 'FIXME:pthread_rwlock_unlock' messages. > It seems to me that my program is (should be?) running, but I do not see it > on the desktop. > > My questions are: is this a common problem with a solution? If not and if > this happens to be the code in my program, is there a way that I can have my > program (compiled under windows) output debug information while running with > Wine under Linux? > > Any help would be greatly appreciated, > Quentin. > > >