Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
About to start learning C++
#2
Linking is the step where the separate compilation units are joined together, in the case of using external libraries, this is also where the library code is linked into your application code.

You can get a variety of linker errors, the most common ones I would expect you to see would be an 'unresolved external symbol' where you have declared something but not defined it, or a 'multiply defined symbol' error where you have managed to put something in a header file such that it is duplicated into multiple compilation units instead of being referenced by multiple compilation units.

tl;dr Learn what the C++ compiling process involves (pre-processing, compilation, linking)

Also, this should really be in the C++ programming forum. Can a mod move it?
[Image: sig.php]
The little boat gently drifted across the pond exactly the way a bowling ball wouldn't.
Reply


Messages In This Thread
About to start learning C++ - by Fallenour - 05-21-2010, 06:50 PM
RE: About to start learning C++ - by MrD. - 05-22-2010, 07:44 AM
RE: About to start learning C++ - by Fallenour - 05-22-2010, 08:30 AM
RE: About to start learning C++ - by MrD. - 05-22-2010, 08:48 AM
RE: About to start learning C++ - by Fallenour - 05-22-2010, 10:16 AM
RE: About to start learning C++ - by MrD. - 05-22-2010, 12:01 PM
RE: About to start learning C++ - by Fallenour - 05-22-2010, 12:27 PM
RE: About to start learning C++ - by Jake - 05-22-2010, 12:36 PM
RE: About to start learning C++ - by MrD. - 05-22-2010, 02:03 PM
RE: About to start learning C++ - by delme - 05-22-2010, 09:29 PM
RE: About to start learning C++ - by Fallenour - 05-22-2010, 09:32 PM
RE: About to start learning C++ - by Jake - 05-22-2010, 10:19 PM
RE: About to start learning C++ - by MrD. - 05-23-2010, 12:07 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Learning music lRL Kewlz 9 1,212 12-25-2012, 09:54 PM
Last Post: Dr.Cooper
  Education Systems: We’re being conditioned against learning Peter L 7 1,462 01-27-2012, 09:26 PM
Last Post: AceInfinity
  We are being conditioned against learning. Peter L 13 1,918 03-13-2011, 10:56 AM
Last Post: Peter L

Forum Jump:


Users browsing this thread: 13 Guest(s)