Linker error
-
I am getting a linking error: LINK : fatal error LNK1181: cannot open input file "C:\Sensors.obj" and Can someone tell me how to fix it. Since Sensors.obj have nothing to do with my project. I don't have any sensors.h or .cpp files. Will really appreciate the help Thanks Anony
-
I am getting a linking error: LINK : fatal error LNK1181: cannot open input file "C:\Sensors.obj" and Can someone tell me how to fix it. Since Sensors.obj have nothing to do with my project. I don't have any sensors.h or .cpp files. Will really appreciate the help Thanks Anony
Look through your project ( a find in files can do this for you ) and see why it's looking for this file.
Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog
-
Look through your project ( a find in files can do this for you ) and see why it's looking for this file.
Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog
Thanks for the reply but it didn't work for this problem. When I do "FIND IN FILES" it gives, there is nothing like sensors.obj. I am just hung up with the problem. What else I can do? Thanks again
C++Prog
-
Thanks for the reply but it didn't work for this problem. When I do "FIND IN FILES" it gives, there is nothing like sensors.obj. I am just hung up with the problem. What else I can do? Thanks again
C++Prog
-
Thanks for the reply but it didn't work for this problem. When I do "FIND IN FILES" it gives, there is nothing like sensors.obj. I am just hung up with the problem. What else I can do? Thanks again
C++Prog
There has to be a reason that it's expecting to find this file, you searched for the word 'sensors' in the text of your entire project ?
-
There must be a reference to it somewhere. Use windows explorer search or VS Find in Files feature to look for any file in your project that contains the text "sensors". If using Find In Files make sure you set the file type to *.*
Yeah, that's what I was advocating.
-
I am getting a linking error: LINK : fatal error LNK1181: cannot open input file "C:\Sensors.obj" and Can someone tell me how to fix it. Since Sensors.obj have nothing to do with my project. I don't have any sensors.h or .cpp files. Will really appreciate the help Thanks Anony
Did you look in the project's
.dsp
file?
"Approved Workmen Are Not Ashamed" - 2 Timothy 2:15
"Judge not by the eye but by the heart." - Native American Proverb
-
Did you look in the project's
.dsp
file?
"Approved Workmen Are Not Ashamed" - 2 Timothy 2:15
"Judge not by the eye but by the heart." - Native American Proverb
no, will try that.. Thanks
C++Prog