|
-
March 16th, 2003, 11:06 PM
#1
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.
-
March 17th, 2003, 05:15 AM
#2
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.
-
March 17th, 2003, 07:43 AM
#3
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
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|