CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Jun 2001
    Posts
    17

    newbie question : symbol referencing error

    I am a newbie and Java programmer, anyway.

    I want to know what is ld: fatal : Symbol referencing error and how to solve it.

    Thank you and urgent.

  2. #2
    Join Date
    Jun 2002
    Location
    Germany
    Posts
    1,557

    linker error

    Zerg,

    This is a linker error from the cc compiler/linker under Unix or from the GNU-compiler/linker under Unix/Linux. The linker is unable to find some symbol which could be either a subroutine or a variable. This is a fatal error for the linker as opposed to a simple warning. The linker can not proceed any further after a fatal error and the build will be stopped.

    Sincerely, Chris.

    P.S. Which development environment are you using? GNU, cc under Unix...

    You're gonna go blind staring into that box all day.

  3. #3
    Join Date
    May 2000
    Location
    Phoenix, AZ [USA]
    Posts
    1,347
    To add to the answer already here, it means that your linker
    didn't find a symbol that it needs. All symbols are either in object
    files or libraries. Thus, you need to link your exe with the object
    file or library that contains the symbol the linker can't find.

    --Paul

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured