MSXML6.lib error on Debug build
-
Hi, compiler: VC++ 6.0 problem: When a Release Build is done, it works fine.. We are using MSXML 6.0 in our code. But during Debug Build of a win32 module, it gives the following error. msxml6.lib(msxml6_i.obj) : fatal error LNK1103: debugging information corrupt; recompile module Error executing link.exe. One possible reason we could think of is the msxml6.lib is of release build. so it builds on release mode and gives the error on debug build We need a Debug build since we need to debug the code, can anybody suggest any work around in the compiler setting.. I tried out the following try out the following, but no use: Turn off optimization with the /Od (Disable) option. Disable minimal rebuild with the /Gm– (Enable Minimal Rebuild) option. Compile with the /Gy (Enable Function-Level Linking) option to package functions. Use a different code generation option. See the /G (Optimize for Processor) options. Change the order of functions and global variables. I get the same error when I enable the Debug option of compiler in Release Mode. Any suggestion or workaround is highly appreciated. Thanks, Shiva
-
Hi, compiler: VC++ 6.0 problem: When a Release Build is done, it works fine.. We are using MSXML 6.0 in our code. But during Debug Build of a win32 module, it gives the following error. msxml6.lib(msxml6_i.obj) : fatal error LNK1103: debugging information corrupt; recompile module Error executing link.exe. One possible reason we could think of is the msxml6.lib is of release build. so it builds on release mode and gives the error on debug build We need a Debug build since we need to debug the code, can anybody suggest any work around in the compiler setting.. I tried out the following try out the following, but no use: Turn off optimization with the /Od (Disable) option. Disable minimal rebuild with the /Gm– (Enable Minimal Rebuild) option. Compile with the /Gy (Enable Function-Level Linking) option to package functions. Use a different code generation option. See the /G (Optimize for Processor) options. Change the order of functions and global variables. I get the same error when I enable the Debug option of compiler in Release Mode. Any suggestion or workaround is highly appreciated. Thanks, Shiva