Mico is not compiling correctly under Visual C++ v8. In particular when 
executing idl.exe a dialog box appears stating, "Can not find MSVCR80.dll".

I have read a previous mico-devel post discussing this problem: 
http://www.mail-archive.com/[email protected]/msg00136.html

I have made the following change to the idl makefile:

idl.exe: main.obj $(DLL_OBJS)
        $(LINK) $(LINKFLAGS) main.obj  $(DLL_OBJS) \
                /subsystem:console  $(LIBS) ole32.lib \
                /out:idl.exe \
                /MANIFEST /MANIFESTFILE:"idl.exe.intermediate.manifest"   <--- 
Added

        mt.exe /outputresource:"idl.exe;1" /manifest 
idl.exe.intermediate.manifest  <--- Added

idl$(VERSION).dll: $(DLL_OBJS) idl$(VERSION).def
        $(LINK) $(LINKDLLFLAGS) $(DLL_OBJS) ole32.lib $(LIBS) \
                /out:idl$(VERSION).dll \
                /def:idl$(VERSION).def \
                /MANIFEST 
/MANIFESTFILE:"idl$(VERSION).dll.intermediate.manifest"   <--- Added

        mt.exe /outputresource:"idl$(VERSION).dll;2" /manifest 
idl$(VERSION).dll.intermediate.manifest   <--- Added


and now when executing idl.exe I get a dialog box that states, "idl.exe has 
encountered a problem and needs to close."
I don't know if it will help, but the 'Error signature' states:

AppName: idl.exe    AppVer: 0.0.0.0   ModName: msvcr80.dll
ModVer: 8.0.50727.42      Offset: 00008890


Can you help? If you do not have Visual C++ v8 you can get a free version at 
http://msdn.microsoft.com/vstudio/express/visualc/download/

Thank you so much,
Brian Heilig


-- 



_______________________________________________
Mico-devel mailing list
[email protected]
http://www.mico.org/mailman/listinfo/mico-devel

Reply via email to