Output for GNU objdump:
$ objdump -t test.o
test.o: file format elf32-little
SYMBOL TABLE:
00000000 l df *ABS* 00000000 test.c
00000000 l d .text 00000000 .text
00000000 l d .data 00000000 .data
00000000 l d .bss 00000000 .bss
00000000 l d .comment 00000000 .comment
00000400 O *COM* 00000008 common_symbol
Output for llvm-objdump:
$ ./bin/llvm-objdump.exe -t test.o
test.o: file format ELF32-hexagon
SYMBOL TABLE:
00000000 *UND* 00000000
00000000 l df *ABS* 00000000 test.c
00000000 l d .text 00000000 .text
00000000 l d .data 00000000 .data
00000000 l d .bss 00000000 .bss
00000000 l d .comment 00000000 .comment
00000400 g *COM* 00000008 common_symbol
please add a newline.