URGENT: fatal error LNK1181: cannot open input file 'Release\icmpping.obj'

  • Thread starter Thread starter Rob Manger
  • Start date Start date
R

Rob Manger

Hi Guys,

Urgent problem. Trying to compile my solution I get the following error:

Linking...
LINK: fatal error LNK1181: cannot open input file 'Release\icmpping.abj'

Note, I havn't changed anything. This project was developed on another
computer that is setup exactly the same way.

Also note, I get the same error in Debug mode except that "Release" is
changed to "Debug".

Any help?

Rob
e: (e-mail address removed)
 
* Rob Manger wrote in microsoft.public.dotnet.languages.vc:
Urgent problem. Trying to compile my solution I get the following error:

Linking...
LINK: fatal error LNK1181: cannot open input file 'Release\icmpping.abj'

You need to figure out why it is unable to open the file, filemon from
http://www.sysinternals.com/ might help.
 
You might try deleting the file and then rebuilding (all) the project. You can also try recompiling the file icmpping.cpp to see if it shows any problems

Usally when I copy a solution I don't copy the object files. One reason is it reduces the total size of the files I need to copy. The other reason is it avoids confusing the compiliier by giving it files compiled on another computer.
 
Back
Top