Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Hi recently I have been installing many of numerical software in Ubuntu.

Of the many software that I have installed manually using the make file provided, I have often seen that the compilation phase generates a number of warnings.

Are such compiler warning to be ignored? Many people tell me that warning don't really matter. I am confused. I want to be sure that I have installed a software correctly. Could anyone give me some sort of guidelines to which warnings I should ignore in general or which I should take seriously.

Many of the warnings I have seen involve some variable being initialized or the control reaching the end of a non-void function.

I am sorry if that sounds like a vague question. But I am not really sure how else to phrase it.

Thank you.

share|improve this question
You can safely ignore all warnings. The only situation you need to care about is when compilation fails. Ubuntu's package manager will let you know when this happens, you don't have to pay any attention to the compiler's output. – meagar Nov 13 '10 at 5:01
He's not using the package manager for this; he said he's building manually. – Matthew Flaschen Nov 13 '10 at 5:05

3 Answers

up vote 2 down vote accepted

Compiler warnings indicate things that might cause problems or might have unintended effects that the programmer wasn't aware of.

Different compilers warn more or less than others, and they all have options to increase or decrease the amount of warnings (type man gcc in the terminal to see what I mean).

Since I assume you're getting numerical software from open source projects that have been reviewed etc., there's no need for you to worry about the compiler warnings, because whoever coded it decided that the code was okay. When they first compiled it, they say the same warnings, and, probably, looked over them and said, "I see these warnings, but I can ignore them. Everything's okay." However, you may want to heed warnings when compiling your own code, depending on what that warning is.

share|improve this answer
He said he's installing/compiling it manually. – Matthew Flaschen Nov 13 '10 at 5:04
@Matthew that's my bad. Fixed – Rafe Kettler Nov 13 '10 at 5:08

Warnings do often matter, but since you're not the developer, it's going to be almost impossible for you to find a bug that way. If it compiles successfully (no errors), you should be okay.

share|improve this answer

Compiler warnings are there to tell you that there might be a problem with your code - they won't usually prevent your code from running correctly, but they help tell you where an issue might come up if you do experience one.

In your case, it could simply be that you're compiling code that was written to a slightly different standard - gcc will usually warn you depending on the compiler options if it notices something you might have overlooked, but it's possible to suppress these, and they aren't necessarily indicative of poor software quality.

If you don't have issues with the software, you probably don't need to worry about warnings.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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