Anyone using MSVC++ IDE to build NSPR
| Newsgroups | gmane.comp.mozilla.devel.nspr |
|---|---|
| Organization | http://groups.google.com |
| Message-ID | <[email protected]> |
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.
>>>>>> accept.exe.manifest file using vc++ IDE >>>>>>>>>
<?xml version='1.0' encoding='UTF-8' standalone='yes'?>
<assembly xmlns='urn:schemas-microsoft-com:asm.v1'
manifestVersion='1.0'>
</assembly>
>>>>>>>>>>>>>>>>
>>>>>> accept.exe.manifest file using cygwin/vc++ >>>>>>>>>
<?xml version='1.0' encoding='UTF-8' standalone='yes'?>
<assembly xmlns='urn:schemas-microsoft-com:asm.v1'
manifestVersion='1.0'>
<dependency>
<dependentAssembly>
<assemblyIdentity type='win32' name='Microsoft.VC80.DebugCRT'
version='8.0.50608.0' processorArchitecture='x86'
publicKeyToken='1fc8b3b9a1e18e3b' />
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly>
<assemblyIdentity type='win32' name='Microsoft.VC80.CRT'
version='8.0.50608.0' processorArchitecture='x86'
publicKeyToken='1fc8b3b9a1e18e3b' />
</dependentAssembly>
</dependency>
</assembly>
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
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.
Thanks,
Chan