diff options
author | Rusty Russell <rusty@rustcorp.com.au> | 2011-05-10 11:37:30 +0930 |
---|---|---|
committer | Rusty Russell <rusty@rustcorp.com.au> | 2011-05-10 11:37:30 +0930 |
commit | 3ccfe7cb7be80cc6fa5b8fc437af72168515b892 (patch) | |
tree | 5cffc562f0ca696ceef13490e0e10b7b6c4355b9 /Roadmap | |
parent | 14f99167f600ae9a3351d4ff7d089e54ca3149ac (diff) | |
download | samba-3ccfe7cb7be80cc6fa5b8fc437af72168515b892.tar.gz samba-3ccfe7cb7be80cc6fa5b8fc437af72168515b892.tar.bz2 samba-3ccfe7cb7be80cc6fa5b8fc437af72168515b892.zip |
Add -fno-common where supported (WAF only)
Normally under UNIX, uninitialized non-static global variables get
placed in the "common" section, where they are merged at link time.
This means if two C files define "int debug", they will end up
referring to the same variable. Or if one does "float level" and the
other does "int level" you'll get an accidental union.
Such bugs can be hard to track down; fortunately GCC offers
-fno-common to disable this feature. It didn't reveal any places
which need fixing, however).
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Diffstat (limited to 'Roadmap')
0 files changed, 0 insertions, 0 deletions