You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
485 B
16 lines
485 B
4 months ago
|
If an archive file is specified as an input file, its members
|
||
|
are added to an output file. This test verifies that beahvior.
|
||
|
|
||
|
RUN: rm -rf %t
|
||
|
RUN: mkdir -p %t
|
||
|
|
||
|
RUN: llvm-mc -triple=x86_64-pc-windows-msvc -filetype=obj -o %t/foo.o %S/Inputs/a.s
|
||
|
RUN: llvm-lib -out:%t/foo.lib %t/foo.o
|
||
|
|
||
|
RUN: llvm-mc -triple=x86_64-pc-windows-msvc -filetype=obj -o %t/bar.o %S/Inputs/b.s
|
||
|
RUN: llvm-lib -out:%t/bar.lib %t/foo.lib %t/bar.o
|
||
|
|
||
|
RUN: llvm-ar t %t/bar.lib | FileCheck %s
|
||
|
CHECK: foo.o
|
||
|
CHECK: bar.o
|