forked from OSchip/llvm-project
64 lines
1.7 KiB
Plaintext
64 lines
1.7 KiB
Plaintext
# Check that LLD does not show any error if the --whole-archive
|
|
# is around non-archive.
|
|
|
|
# RUN: yaml2obj -format=elf -docnum=1 %s > %t-so.o
|
|
# RUN: yaml2obj -format=elf -docnum=2 %s > %t-exe.o
|
|
# RUN: lld -flavor gnu -target mipsel -shared -o %t.so %t-so.o
|
|
# RUN: lld -flavor gnu -target mipsel -o %t.exe %t-exe.o --whole-archive %t.so
|
|
|
|
# so.o
|
|
---
|
|
FileHeader:
|
|
Class: ELFCLASS32
|
|
Data: ELFDATA2LSB
|
|
Type: ET_REL
|
|
Machine: EM_MIPS
|
|
Flags: [ EF_MIPS_NOREORDER, EF_MIPS_PIC, EF_MIPS_CPIC,
|
|
EF_MIPS_ABI_O32, EF_MIPS_ARCH_32 ]
|
|
Sections:
|
|
- Name: .text
|
|
Type: SHT_PROGBITS
|
|
Flags: [ SHF_ALLOC, SHF_EXECINSTR ]
|
|
AddressAlign: 0x10
|
|
Size: 0x04
|
|
Symbols:
|
|
Global:
|
|
- Name: foo
|
|
Type: STT_FUNC
|
|
Section: .text
|
|
Size: 0x04
|
|
|
|
# exe.o
|
|
---
|
|
FileHeader:
|
|
Class: ELFCLASS32
|
|
Data: ELFDATA2LSB
|
|
Type: ET_REL
|
|
Machine: EM_MIPS
|
|
Flags: [ EF_MIPS_NOREORDER, EF_MIPS_CPIC,
|
|
EF_MIPS_ABI_O32, EF_MIPS_ARCH_32 ]
|
|
Sections:
|
|
- Name: .text
|
|
Type: SHT_PROGBITS
|
|
Flags: [ SHF_ALLOC, SHF_EXECINSTR ]
|
|
AddressAlign: 0x10
|
|
Size: 0x04
|
|
- Name: .rel.text
|
|
Type: SHT_REL
|
|
Link: .symtab
|
|
AddressAlign: 0x04
|
|
Info: .text
|
|
Relocations:
|
|
- Offset: 0x00
|
|
Symbol: foo
|
|
Type: R_MIPS_26
|
|
|
|
Symbols:
|
|
Global:
|
|
- Name: __start
|
|
Type: STT_FUNC
|
|
Section: .text
|
|
Size: 0x04
|
|
- Name: foo
|
|
...
|