Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've created a new C++ project in Visual Studio 2008. No code has been written yet; Only project settings have been changed.

When I compile the project, I receive the following fatal error:

fatal error LNK1104: cannot open file 'C:\Program.obj'

share|improve this question

1 Answer

up vote 47 down vote accepted

This particular issue is caused by specifying a dependency to a lib file that had spaces in its path. The path needs to be surrounded by quotes for the project to compile correctly.

On the Configuration Properties -> Linker -> Input tab of the project’s properties, there is an Additional Dependencies property. This issue was fixed by changing this property from:

C:\Program Files\sofware sdk\lib\library.lib

To:

" C:\Program Files\sofware sdk\lib\library.lib"

share|improve this answer
5  
God you've just hanged two day's bug chase to 30 second one :) – jb. May 10 '09 at 21:04
sorry it dint worked for me..!! – pvaju896 Aug 25 '10 at 6:27
Did not work :( – user396483 Dec 26 '12 at 21:44
I had the same problem. If your Linker is correct but your lib directory is set incorrectly the same error may come up. Try looking in Configuration Properties -> VC++ directories -> Library Directories to see if you set the library correctly. Sometimes the lib folder consists of a x86 and a x64 folder. You have to set it to one of those (depending on your compiler) rather than the folder containing both. – M4st3rM1nd Apr 28 at 22:56

protected by Michael Myers Nov 25 '10 at 5:38

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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