I can't compile.

Apr 26, 2018 at 11:31am
I can't compile my project.
I was trying to make a Win32 window application on Visual Studio 2010.
I tried compiling it before I edited it.
Then there came a fatal error, it says a bit like this:

COFF error, no such file

My computer is MADE IN CHINA. I am a little poor at Chinese.
I clicked on that error message and it said that the system can't
find where the problem occur. Please help me. It's Urgent.
Last edited on Apr 26, 2018 at 11:38am
Apr 26, 2018 at 1:30pm
Google search of your error brought me here, but not sure if it's the same issue.
https://stackoverflow.com/questions/10888391/error-link-fatal-error-lnk1123-failure-during-conversion-to-coff-file-inval

Can you compile a "hello world" C++ program? Is it just a win32 application that's give you linker errors?
1
2
3
4
5
6
#include <iostream>

int main()
{
    std::cout << "Hello, world!" << std::endl;
}


Can you copy-paste the exact, full error message?
Topic archived. No new replies allowed.