22 lines
487 B
Plaintext
22 lines
487 B
Plaintext
## Stripping unneeded symbols from execuatble/DSO should
|
|
## eliminate the static symbol table, because it's not used
|
|
## by the dynamic loader.
|
|
|
|
# RUN: yaml2obj %s -o %t
|
|
# RUN: cp %t %t1
|
|
# RUN: llvm-objcopy --strip-unneeded %t %t2
|
|
# RUN: llvm-readobj --section-headers %t2 | FileCheck %s
|
|
|
|
!ELF
|
|
FileHeader:
|
|
Class: ELFCLASS64
|
|
Data: ELFDATA2LSB
|
|
Type: ET_EXEC
|
|
Machine: EM_X86_64
|
|
Symbols:
|
|
- Name: bar
|
|
- Name: foo
|
|
Binding: STB_GLOBAL
|
|
|
|
# CHECK-NOT: .symtab
|