I''ve fixed all of the compile errors for building wxRuby with VC++ 6.0, now I''m down to link errors. I can''t do any more work tonight, so I thought I''d post my console output in case someone else recognizes the problem before I get back to it tomorrow night. Curt -------------- next part -------------- A non-text attachment was scrubbed... Name: build.log Type: application/octet-stream Size: 28711 bytes Desc: not available Url : http://rubyforge.org/pipermail/wxruby-users/attachments/20031026/7033ab46/build-0001.obj
Curt Hibbs wrote:> I''ve fixed all of the compile errors for building wxRuby with VC++ 6.0, now > I''m down to link errors.Creating library wxruby.lib and object wxruby.exp wxmswd.lib(fontutil.obj) : error LNK2001: unresolved external symbol __imp__DeleteObject@4 ... wxmswd.lib(clipbrd.obj) : error LNK2001: unresolved external symbol __imp__CreateCompatibleDC@4 ... All the unresolveds were from within wxmswd itself. They seem to be Windows API calls with __imp__ inserted at the beginning. Have you been able to compile and link some of the wxWindows sample apps? Kevin
Kevin Smith wrote:> > Curt Hibbs wrote: > > I''ve fixed all of the compile errors for building wxRuby with > VC++ 6.0, now > > I''m down to link errors. > > Creating library wxruby.lib and object wxruby.exp > wxmswd.lib(fontutil.obj) : error LNK2001: unresolved external symbol > __imp__DeleteObject@4 > ... > wxmswd.lib(clipbrd.obj) : error LNK2001: unresolved external symbol > __imp__CreateCompatibleDC@4 > ... > > All the unresolveds were from within wxmswd itself. They seem to be > Windows API calls with __imp__ inserted at the beginning.Yes, I noticed that as well. My first thought was that I wasn''t linking in the windows libs, but they seem to be there (I haven''t yet verified that all the necessary libs are specified).> Have you been able to compile and link some of the wxWindows sample apps?Yes, I have run sample apps from wxWindows. This is probably something simple, but like I said last night, I won''t have any free time to look at this until this evening. Curt