mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-10-30 15:32:52 +01:00
ca0a1505ba
If no other operation is specified, 's' becomes an operation instead of an modifier. The s operation just creates a symbol table. It is the same as running ranlib. We assume the archive was created by a sane ar (like llvm-ar or gnu ar) and if the symbol table is present, then it is current. We use that to optimize the most common case: a broken build system that thinks it has to run ranlib. llvm-svn: 187353
51 lines
1.6 KiB
Plaintext
51 lines
1.6 KiB
Plaintext
RUN: rm -f %t.a
|
|
RUN: llvm-ar rcs %t.a %p/Inputs/trivial-object-test.elf-x86-64 %p/Inputs/trivial-object-test2.elf-x86-64
|
|
RUN: llvm-nm -s %t.a | FileCheck %s
|
|
|
|
CHECK: Archive map
|
|
CHECK-NEXT: main in trivial-object-test.elf-x86-64
|
|
CHECK-NEXT: foo in trivial-object-test2.elf-x86-64
|
|
CHECK-NEXT: main in trivial-object-test2.elf-x86-64
|
|
CHECK-NOT: bar
|
|
|
|
CHECK: trivial-object-test.elf-x86-64:
|
|
CHECK-NEXT: U SomeOtherFunction
|
|
CHECK-NEXT: 00000000 T main
|
|
CHECK-NEXT: U puts
|
|
CHECK-NEXT: trivial-object-test2.elf-x86-64:
|
|
CHECK-NEXT: 00000000 t bar
|
|
CHECK-NEXT: 00000006 T foo
|
|
CHECK-NEXT: 00000016 T main
|
|
|
|
RUN: rm -f %t.a
|
|
RUN: llvm-ar rcS %t.a %p/Inputs/trivial-object-test.elf-x86-64 %p/Inputs/trivial-object-test2.elf-x86-64
|
|
RUN: llvm-nm -s %t.a | FileCheck %s --check-prefix=NOMAP
|
|
|
|
NOMAP-NOT: Archive map
|
|
|
|
RUN: llvm-ar s %t.a
|
|
RUN: llvm-nm -s %t.a | FileCheck %s
|
|
|
|
check that the archive does have a corrupt symbol table.
|
|
RUN: rm -f %t.a
|
|
RUN: cp %p/Inputs/archive-test.a-corrupt-symbol-table %t.a
|
|
RUN: llvm-nm -s %t.a | FileCheck %s --check-prefix=CORRUPT
|
|
|
|
CORRUPT: Archive map
|
|
CORRUPT-NEXT: mbin in trivial-object-test.elf-x86-64
|
|
CORRUPT-NEXT: foo in trivial-object-test2.elf-x86-64
|
|
CORRUPT-NEXT: main in trivial-object-test2.elf-x86-64
|
|
|
|
CORRUPT: trivial-object-test.elf-x86-64:
|
|
CORRUPT-NEXT: U SomeOtherFunction
|
|
CORRUPT-NEXT: 00000000 T main
|
|
CORRUPT-NEXT: U puts
|
|
CORRUPT-NEXT: trivial-object-test2.elf-x86-64:
|
|
CORRUPT-NEXT: 00000000 t bar
|
|
CORRUPT-NEXT: 00000006 T foo
|
|
CORRUPT-NEXT: 00000016 T main
|
|
|
|
check that the we *don't* update the symbol table.
|
|
RUN: llvm-ar s %t.a
|
|
RUN: llvm-nm -s %t.a | FileCheck %s --check-prefix=CORRUPT
|