我有这个源文件:
// ConstPointer.cpp
const short * const const_short_p_const = 0;
const short * const_short_p = 0;
并使用和不使用调试信息编译它(SUN C编译器5.10):
# CC ConstPointer.cpp -c -o ConstPointer.o
# CC -g ConstPointer.cpp -c -o ConstPointer-debug.o
以下是没有调试信息的目标文件的符号名称:
# nm -C ConstPointer.o
ConstPointer.o:
[Index] Value Size Type Bind Other Shndx Name
[2] | 0| 0|SECT |LOCL |0 |10 |
[3] | 0| 0|SECT |LOCL |0 |9 |
[4] | 0| 0|OBJT |LOCL |0 |6 |Bbss.bss
[1] | 0| 0|FILE |LOCL |0 |ABS |ConstPointer.cpp
[5] | 0| 0|OBJT |LOCL |0 |3 |Ddata.data
[6] | 0| 0|OBJT |LOCL |0 |5 |Dpicdata.picdata
[7] | 0| 0|OBJT |LOCL |0 |4 |Drodata.rodata
[9] | 4| 4|OBJT |GLOB |0 |3 |const_short_p
[8] | 0| 4|OBJT |LOCL |0 |3 |const_short_p_const
以下是包含调试信息的目标文件的符号名称:
# nm -C ConstPointer-debug.o
ConstPointer-debug.o:
[Index] Value Size Type Bind Other Shndx Name
[4] | 0| 0|SECT |LOCL |0 |9 |
[2] | 0| 0|SECT |LOCL |0 |8 |
[3] | 0| 0|SECT |LOCL |0 |10 |
[10] | 0| 4|OBJT |GLOB |0 |3 |$XAHMCqApZlqO37H.const_short_p_const
[5] | 0| 0|NOTY |LOCL |0 |6 |Bbss.bss
[1] | 0| 0|FILE |LOCL |0 |ABS |ConstPointer.cpp
[6] | 0| 0|NOTY |LOCL |0 |3 |Ddata.data
[7] | 0| 0|NOTY |LOCL |0 |5 |Dpicdata.picdata
[8] | 0| 0|NOTY |LOCL |0 |4 |Drodata.rodata
[9] | 4| 4|OBJT |GLOB |0 |3 |const_short_p
为什么变量const_short_p_const是另一个符号名?在使用调试信息进行编译时,g不会更改它.它对我来说看起来像编译器错误.你怎么看?第二个const(常量指针)导致了这一点.
编辑Drew Hall的评论:
例如,您有两个文件:
// ConstPointer.cpp
const short * const const_short_p_const = 0;
void foo();
int main(int argc, const char *argv[]) {
foo();
return 0;
}
和
// ConstPointer2.cpp
extern const short * const const_short_p_const;
void foo() {
short x = *const_short_p_const;
}
编译很好:
# CC ConstPointer2.cpp -g -c -o ConstPointer2.o
# CC ConstPointer.cpp -g -c -o ConstPointer.o
但链接不起作用,因为符号不同! ConstPointer2.o中的符号名称为const_short_p_const,但ConstPointer.o中的符号名称为$XAHMCqApZlqO37H.const_short_p_const.
# CC ConstPointer.o ConstPointer2.o -o ConstPointer
Undefined first referenced
symbol in file
const_short_p_const ConstPointer2.o
最佳答案 也许这与全局const变量在C中隐含静态的事实有关?