Microsoft's C++ compiler and linker seem to have an odd relationship with mspdb100.dll. When run from the IDE, of course, the compiler and linker work fine. When running either one from the command line, I get the following error:

formidable error

No problem, I located the DLL and copied it to the directory. Now the compiler works fine, but the linker dies with:

even worse

I could solve the problem by adding "%VS10%\Common7\IDE" to my PATH, but for various reasons (performance, system purity, OCD, etc), I don't want to do that. Why is this setup so touchy, and is there anything else I can do to solve it?

link|improve this question

72% accept rate
do you want to accept an answer, or add more details as to why nothing is acceptable? – Michael Paulukonis Dec 8 '11 at 13:55
feedback

5 Answers

try running path\to\VC\bin\vcvars32.bat from within your current shell first. This should ensure your command-line setup will match the IDE-setup.

This is not a permanent fix -- you need to do it every time you launch a new shell.

You could probably also find some way to add everything that's in that .bat permanently to the environment variables, but.... like you asked, why the heck doesn't the MS install do that already?

link|improve this answer
feedback

Add Microsoft Visual Studio 10.0\Common7\IDE to your path, and this issue will not exist any more. You will be able to build without running this silly batch file every time.

link|improve this answer
From the original question "I could solve the problem by adding "%VS10%\Common7\IDE" to my PATH, but for various reasons [...], I don't want to do that." – Michael Paulukonis Sep 2 '11 at 15:50
In my build script I've just added line: set "PATH=%PATH%;%VS100COMNTOOLS%\..\IDE" – grundic Sep 14 '11 at 8:25
feedback

i know this is a bit dated but if anyone's looking for a way to get compiler running from command line; here's what I did to get it running . I'm using Win7 32bit and Visual Studio 2010. I created a small batch file in C:\Windows. open cmd prompt at C:\Windows as admin, then type the following:

copy con cl.bat (hit enter)

@"C:\Program Files\Microsoft Visual Studio 10.0\VC\bin\vcvars32" %1 %2 %3 %4 %5 %6 (hit enter) @"C:\Program Files\Microsoft Visual Studio 10.0\VC\bin\cl" %1 %2 %3 %4 %5 %6 (hit enter)

then press f6 and hit enter again

Obviously the path you will use is the install path to where you installed visual studio .

you now have working command line compiler from any location or directory in windows. To test this go to desktop and open cmd prompt as admin; I prefer to use Ctrl+Shift and right click then choose open command prompt here. At command prompt type "cl" (without quotes) and hit enter. you will see a message "Setting enviroment for using Microsoft Visual Studio 2010 x86 tools"

type "cl" and hit enter again and you will get your compiler info. you're all set to compile.

enjoy

link|improve this answer
feedback

OtherMichael - thanks that worked for me. Although, I had to call vcvars32.bat that is located in the bin folder, which is of course what you meant, but keyboard was trickier this time. I'm just clearing it out because it took me a minute to figure out that a slash got away from your Answer ;)

link|improve this answer
forgot the slash, somehow. updated. – Michael Paulukonis Aug 5 '10 at 18:39
feedback

I noticed when I installed Microsoft Visual Studio 2010 Express that under the "Microsoft Visual Studio 2010 Express" folder in the Start Menu, there is a link to "Visual Studio Command Prompt (2010)", which sets up all the necessary environment variables when opened. That way you shouldn't have to edit you PATH variable.

This shortcut runs the following:

%comspec% /k ""C:\Program Files\Microsoft Visual Studio 10.0\VC\vcvarsall.bat"" x86

If it's not convenient to use the shortcut, perhaps you could learn something of use from investigating what this .bat file does?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.