> >Hello, > >I have examined different possibilities to run a Windows program on Mac and it seems to me that Wine is the best one. >Since the program I will try to run is complex I decided to test debugging capabilities of Wine. > >What I did (tried)? > >1. My system is: Mac Mini, Mac OS X 10.6.3. >2. I downloaded Wine 1.1.43 and built it successfully with: > >Code: > >export CFLAGS="-arch i386 -m32" >export CXXFLAGS="$CFLAGS" >export CPPFLAGS="-I/usr/X11/include" >export LDFLAGS="-L/usr/X11/lib" > >./configure >make depend && make >(I didn't make install) > > > > >3. I created a very simple WTL based test application. It is a dialog with two buttons (OK, Cancel). Pressing OK purposely >generates division by zero exception. Then I copied the .exe, .cpp, .h, .pdb files in a /test directory on my Mac. > This may sound strange, but did you compile the application for debugging? Without this the symbol table may be incomplete. James McKenzie