0

I just startet coding and follow a book to get into coding. Now, I have this error but cannot figure out what causes the error. Any Ideas? (https://i.stack.imgur.com/Wjeir.png)

I checked my compiler and the compiler should be fine. I think the problems either is the debugger or a file missing somewhere. I actually dont know what this error means and couldnt figure it out googling. Thanks for your help!

Eric Hell
  • 1
  • 1
  • 1
    the linker is missing, either you haven't installed one or its not on your path – Alan Birtles Feb 08 '23 at 19:04
  • [ld is the linker](https://stackoverflow.com/questions/6264249/how-does-the-compilation-linking-process-work). After the compiler has finished translating your source code into executable objects, the linker assembles the objects, resolves any outstanding connections between the objects, and produces a program you can run. – user4581301 Feb 08 '23 at 19:05
  • Usually the linker is bundled with the compiler as part of what's called a toolchain. If you have a compiler and didn't do anything particularly strange installing the compiler, you should have a linker. To determine why it cannot be found we most likely need to inspect your IDE's configuration. That's really hard to do over the Internet. – user4581301 Feb 08 '23 at 19:07
  • Please clarify your specific problem or provide additional details to highlight exactly what you need. As it's currently written, it's hard to tell exactly what you're asking. – Community Feb 09 '23 at 06:48
  • Thanks for your help. After trying to find a solution without success i decided to uninstall everything, start from scratch and re-downloaded everything. At least it works now. @user4581301 – Eric Hell Feb 09 '23 at 22:07
  • Sorry I couldn't be more help, but good that you have the tools sorted out. – user4581301 Feb 09 '23 at 22:09

0 Answers0