It only generated the helloworld.exe.so file, and no others. This is the only file defined in the makefile generated by winemaker. It is listed as part of the EXES macro and not the DLLS, which is why I thought it to be an executable.
Could there be some reason that no executable is generated?
Shai Dagan
-----Original Message----- From: Dimitrie O. Paun [mailto:dpaun@rogers.com] Sent: Tuesday, November 02, 2004 6:14 PM To: Dagan Shai Cc: wine-devel@winehq.org Subject: Re: Test Drive failure
On Tue, Nov 02, 2004 at 05:53:11PM +0200, Dagan Shai wrote:
Hi, I'm new to WINELIB. As a test drive I tried to port the Hello World application, just to see that the environment is functioning. I called: winemaker --console --lower-uppercase . In the source directory. Then I called: make A helloworld.exe.so file was successfully created as a result (no
errors
or warnings).
It should have also generated a helloworld executable file, and you should be running it as: # ./helloworld
Could there be some reason that no executable is generated?
The helloworld.exe.so file is the executable. You run it like you would run any other win32 exe file:
wine helloworld.exe.so
On Tue, 2 Nov 2004 18:27:51 +0200, Dagan Shai shai.dagan@starhome.com wrote:
It only generated the helloworld.exe.so file, and no others. This is the only file defined in the makefile generated by winemaker. It is listed as part of the EXES macro and not the DLLS, which is why I thought it to be an executable.
Could there be some reason that no executable is generated?
Shai Dagan
-----Original Message----- From: Dimitrie O. Paun [mailto:dpaun@rogers.com] Sent: Tuesday, November 02, 2004 6:14 PM To: Dagan Shai Cc: wine-devel@winehq.org Subject: Re: Test Drive failure
On Tue, Nov 02, 2004 at 05:53:11PM +0200, Dagan Shai wrote:
Hi, I'm new to WINELIB. As a test drive I tried to port the Hello World application, just to see that the environment is functioning. I called: winemaker --console --lower-uppercase . In the source directory. Then I called: make A helloworld.exe.so file was successfully created as a result (no
errors
or warnings).
It should have also generated a helloworld executable file, and you should be running it as: # ./helloworld
-- Dimi. ______________________________________________________________________ This email message has been scanned by PineApp Mail-Secure and has been found clean.
On Tue, Nov 02, 2004 at 06:27:51PM +0200, Dagan Shai wrote:
It only generated the helloworld.exe.so file, and no others. This is the only file defined in the makefile generated by winemaker. It is listed as part of the EXES macro and not the DLLS, which is why I thought it to be an executable.
That's odd. Can you please send all the files (.c, .h, Makefile, anything else)?