The MASM Forum Archive 2004 to 2012

General Forums => The Campus => Topic started by: kyo on August 19, 2006, 02:40:56 AM

Title: Problem in ObjAsm32 Example
Post by: kyo on August 19, 2006, 02:40:56 AM
When ever it try to compile ObjAsm32 example following error occures.

g:\Masm32\Bin\ML.EXE /Zd /Zi /c /coff /nologo /I"g:\Masm32\Include" "Demo01A.asm"
Assembling: Demo01A.asm
DEBUG MODE  : ACTIVE
OOP LEVEL   : PRIMER ONLY
- Primer.inc

Inheritance path: Primer
Inheritance path: Primer - Shape
Inheritance path: Primer - Shape - TriangleShape
Inheritance path: Primer - Shape - RectangleShape
g:\Masm32\Bin\LINK.EXE /SUBSYSTEM:WINDOWS /DEBUG /DEBUGTYPE:CV /VERSION:4.0 /LIBPATH:"g:\Masm32\Lib" /OUT:"Demo01A.exe" "Demo01A.obj"
Microsoft (R) Incremental Linker Version 8.00.40426.16
Copyright (C) Microsoft Corporation.  All rights reserved.

ERROR: MSPDB80.DLL: unable to connect: unable to spawn mspdbsrv.exe (0x80070714)ERROR: MSPDB80.DLL: unable to connect: unable to spawn mspdbsrv.exe (0x80070714)LINK : fatal error LNK1101: incorrect MSPDB80.DLL version; recheck installation of this product
Make error(s) occured.
Total compile time 3726 ms

What is this error i am unable to understand?
Title: Re: Problem in ObjAsm32 Example
Post by: Biterider on August 19, 2006, 04:46:30 AM
Hi kyo
You are probably using Visual Studio 8 that creates this situation. There are many reports on the net about this problem like http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=132897&SiteID=1. As suggested try to change the PATH env variable or use the ML and LINK binaries supplied in the MASM32 package.

Biterider