16 lines · plain
1If an archive file is specified as an input file, its members2are added to an output file. This test verifies that beahvior.3 4RUN: rm -rf %t5RUN: mkdir -p %t6 7RUN: llvm-mc -triple=x86_64-pc-windows-msvc -filetype=obj -o %t/foo.o %S/Inputs/a.s8RUN: llvm-lib -out:%t/foo.lib %t/foo.o9 10RUN: llvm-mc -triple=x86_64-pc-windows-msvc -filetype=obj -o %t/bar.o %S/Inputs/b.s11RUN: llvm-lib -out:%t/bar.lib %t/foo.lib %t/bar.o12 13RUN: llvm-lib -list %t/bar.lib | FileCheck %s14CHECK: foo.o15CHECK: bar.o16