I have a question regarding gcc. Why I get an error of unused variable when I define the variable locally in a function but not when the variable is global in a unique file?.

I can understand that it can be use for someone else, but to do that then I need to put the external word right?

Thanks in advance.

link|improve this question

feedback

7 Answers

up vote 3 down vote accepted

If by "global in a unique file", you mean "int x;" outside of any function, the it's not the compilers job to detect that, the variable needs to be available to the linker in case another compilation unit needs it (such as errno).

If you meant "static int x" where it's not made available to the linker, this is probably just a choice made by GCC. I don't believe compilers are required to notify of this and it does no real damage other than wasting a few bytes in your address space.

link|improve this answer
feedback

The compiler has no way of knowing if a global variable is used - it could be used from a compilation unit written in a completely different language, for example.

link|improve this answer
But to make it visible, I need to declared it external right?. – Eduardo Mar 19 '09 at 23:18
No, it's visible by default. External is used in other compilation units to indicate to the linker to look for the global elsewhere. – Michael Mar 19 '09 at 23:19
Nope - the other compilation unit can do that. – anon Mar 19 '09 at 23:19
No, just don't declare it static. If you want the warning, make it static. – Pete Kirkham Mar 19 '09 at 23:19
It only needs to be declared extern in the module that uses the variable, not necessarily the module that defines the variable. – Michael Burr Mar 19 '09 at 23:19
show 1 more comment
feedback

Because global variables can be used on any other place that the compiler cannot known. For instance on a external library o program.

link|improve this answer
feedback

Unused locals can be determined by the compiler. Unused globals can only be determined by the linker, since they can be shared across object files.

In general, the linker doesn't do warnings for code-gen.

link|improve this answer
Generally, if a linker is going to do anything with unused globals, it's going to remove them from the image. – Michael Burr Mar 19 '09 at 23:21
feedback

When the variable is global, the compiler has not full visibility across all the compilation units in the project - the variable could be modified in another compilation unit. The linker is able to tell that it is unused, probably it will remove it from the object file.

link|improve this answer
I've never come across alinker that removes things from object files. From the final executable, maybe. – anon Mar 19 '09 at 23:22
Sorry that is what I meant – 1800 INFORMATION Mar 20 '09 at 0:00
feedback

Because if it's global it can be used by another module that gets linked in later.

It's a common idiom to have all your globals defined in a single file. That file may not even have any code, much less code that uses all the variables.

link|improve this answer
feedback

I have encountered the same question when I build the dalvikVM in android2.3 and I got the key of the point. It is because that the parameters of the compiler is too strict:

LOCAL_CFLAGS += -Werror.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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