- 论坛徽章:
- 0
|
本帖最后由 sanbiangongzi 于 2012-04-23 16:24 编辑
madope 发表于 2012-04-23 15:56 ![]()
我就是想知道这种情况下该咋办啊。。
回复 2# bruceteen - # cat a.c
- static int a;
- // your code
- static int a;
- # gcc -c -pedantic a.c -o a.o
- # readelf -S a.o
- There are 10 section headers, starting at offset 0xd8:
- Section Headers:
- [Nr] Name Type Address Offset
- Size EntSize Flags Link Info Align
- [ 0] NULL 0000000000000000 00000000
- 0000000000000000 0000000000000000 0 0 0
- [ 1] .text PROGBITS 0000000000000000 00000040
- 0000000000000000 0000000000000000 AX 0 0 4
- [ 2] .data PROGBITS 0000000000000000 00000040
- 0000000000000000 0000000000000000 WA 0 0 4
- [ 3] .bss NOBITS 0000000000000000 00000040
- 0000000000000004 0000000000000000 WA 0 0 4
- [ 4] .comment PROGBITS 0000000000000000 00000040
- 000000000000003a 0000000000000001 MS 0 0 1
- [ 5] .comment.SUSE.OPT PROGBITS 0000000000000000 0000007a
- 0000000000000006 0000000000000001 MS 0 0 1
- [ 6] .note.GNU-stack PROGBITS 0000000000000000 00000080
- 0000000000000000 0000000000000000 0 0 1
- [ 7] .shstrtab STRTAB 0000000000000000 00000080
- 0000000000000058 0000000000000000 0 0 1
- [ 8] .symtab SYMTAB 0000000000000000 00000358
- 00000000000000d8 0000000000000018 9 9 8
- [ 9] .strtab STRTAB 0000000000000000 00000430
- 0000000000000007 0000000000000000 0 0 1
- Key to Flags:
- W (write), A (alloc), X (execute), M (merge), S (strings)
- I (info), L (link order), G (group), x (unknown)
- O (extra OS processing required) o (OS specific), p (processor specific)
- #
复制代码 static 变量在一个文件中定义两次没有问题
[ 3] .bss NOBITS 0000000000000000 00000040
0000000000000004 0000000000000000 WA 0 0 4
出现这种情况,通常的用法是,如果该static变量的初始化要示用到本文件中的函数/变量来初始化
他被放到文件末尾,
但是在这些用于初始化它函数中又会被引用的话
static type var;
//your code
static type var = {init values};
Linux 内核中有很多这样的例子
|
|