reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
    1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
   22
   23
   24
   25
   26
   27
   28
   29
   30
   31
   32
   33
   34
   35
   36
   37
   38
   39
   40
   41
   42
   43
   44
   45
   46
   47
   48
   49
   50
   51
   52
   53
   54
   55
   56
   57
   58
   59
   60
   61
   62
   63
   64
   65
   66
   67
   68
   69
   70
   71
   72
   73
   74
   75
   76
   77
   78
   79
   80
   81
   82
   83
   84
   85
   86
   87
   88
   89
   90
   91
## Test quick append 

# RUN: rm -rf %t && mkdir -p %t
# RUN: yaml2obj %s -o %t/1.o --docnum=1
# RUN: yaml2obj %s -o %t/2.o --docnum=2

## Append single member:
# RUN: llvm-ar qc %t/single.a %t/1.o
# RUN: llvm-ar t %t/single.a \
# RUN:   | FileCheck %s --check-prefix=SINGLE --match-full-lines --implicit-check-not {{.}}

# SINGLE: 1.o

# RUN: llvm-nm --print-armap %t/single.a \
# RUN:   | FileCheck %s --check-prefix=SINGLE-SYM

# SINGLE-SYM: symbol1

## Append multiple members:
# RUN: llvm-ar qc %t/multiple.a %t/1.o %t/2.o
# RUN: llvm-ar t %t/multiple.a \
# RUN:   | FileCheck %s --check-prefix=MULTIPLE --match-full-lines --implicit-check-not {{.}}

# MULTIPLE:      1.o
# MULTIPLE-NEXT: 2.o

# RUN: llvm-nm --print-armap %t/multiple.a \
# RUN:   | FileCheck %s --check-prefix=MULTIPLE-SYM

# MULTIPLE-SYM:      symbol1
# MULTIPLE-SYM-NEXT: symbol2

## Append same member:
# RUN: llvm-ar qc %t/same.a %t/1.o %t/1.o
# RUN: llvm-ar t %t/same.a \
# RUN:   | FileCheck %s --check-prefix=SAME -DFILE=%t/2.o --match-full-lines --implicit-check-not {{.}}

# SAME:      1.o
# SAME-NEXT: 1.o

# RUN: llvm-nm --print-armap %t/same.a \
# RUN:   | FileCheck %s --check-prefix=SAME-SYM

# SAME-SYM:      symbol1
# SAME-SYM-NEXT: symbol1

## Append without member:
# RUN: llvm-ar qc %t/without.a
# RUN: llvm-ar t %t/without.a | count 0

# RUN: llvm-nm --print-armap %t/without.a | count 0

## No archive:
# RUN: not llvm-ar qc 2>&1 \
# RUN:   | FileCheck %s --check-prefix=NO-ARCHIVE

# NO-ARCHIVE: error: an archive name must be specified

## Member does not exist:
# RUN: not llvm-ar qc %t/missing.a %t/missing.txt 2>&1 \
# RUN:   | FileCheck %s --check-prefix=MISSING-FILE -DFILE=%t/missing.txt

# MISSING-FILE: error: [[FILE]]: {{[nN]}}o such file or directory

--- !ELF
FileHeader:
  Class:   ELFCLASS64
  Data:    ELFDATA2LSB
  Type:    ET_REL
  Machine: EM_X86_64
Sections:
  - Name: .text
    Type: SHT_PROGBITS
Symbols:
  - Name:    symbol1
    Binding: STB_GLOBAL
    Section: .text

--- !ELF
FileHeader:
  Class:   ELFCLASS64
  Data:    ELFDATA2LSB
  Type:    ET_REL
  Machine: EM_X86_64
Sections:
  - Name: .text
    Type: SHT_PROGBITS
Symbols:
  - Name:    symbol2
    Binding: STB_GLOBAL
    Section: .text