Re: Anyone using MSVC++ IDE to build NSPR
Wan-Teh Chang <[email protected]>
| Newsgroups | gmane.comp.mozilla.devel.nspr |
|---|---|
| Message-ID | <[email protected]> |
[email protected] wrote: > Hi, > > I am building nspr with vc++8 / cygwin / winxp. > > different manifest files are being generated when I build the nspr test > cases (provided in nsprpub/pr/tests) using vc++ ide and cygwin/vc++. > Test cases build with cygwin/vc++ run fine but test cases build with > vc++ IDE crash with runtime error R6034. > > below is the dump of the manifest files for accept.exe test case. > copying the manifest file generated by cygwin/vc++ to the vc++ IDE > build directory makes the test case build with vc++ IDE run fine. > [...omitted...] > could some one help me fix this issue so that I can have the correct > manifest file generated with vc++ IDE. I have tried all options in the > project property page with help. Chan, I am not familiar with the manifest files. Hopefully someone else in this newsgroup can help you. By comparing the two manifest files, I see that the manifest file generated with VC++ IDE is missing the dependencies on the CRT (C run-time library). I did a Web search for "runtime error R6034" and found that it is about the C run-time library: http://msdn2.microsoft.com/en-US/library/ms235560(vs.80).aspx So you can continue looking in that direction. Wan-Teh