vote up 0 vote down star

Don't ask why, but is there any way to suppress a failed linking error?

Such as:

undefined reference to BLANK

This is in GCC 3.4.6

flag

It's pretty lame to start out a question with "Don't ask why..." that might be kind of important. In this case, it is... – SoapBox Jan 14 at 22:56
Its also pretty lame to bicker about the symmantics of someone's speech. If the reason why is relevant it will come up in the "conversation." – windfinder Jan 15 at 15:24

3 Answers

vote up 5 vote down check

No, because they are errors and not warnings. By definition this means that the function was referenced someplace but not defined... that's not something you can just ignore.

link|flag
vote up 0 vote down

The only way of supressing the link errors would be not linking (or not having errors in the first place). As mentioned by SoapBox, errors cannot be silently ignored.

If you post some code you could get to a solution to the problem that is better than trying to close your eyes and wait for the problem to go away (they don't usually).

link|flag
vote up 0 vote down

It's not the compiler, but the linker. The best way to "suppress" this would be to pass in the library name with the compile command:

gcc try.cc -lstdc++

or

g++ try.cc -lfltk

for instance.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.