3 # Undefined symbols in a DSO should pull out object files from archives
6 # RUN: echo '.globl foo' | llvm-mc -filetype=obj -triple=x86_64-linux-gnu -o %t1.o -
7 # RUN: ld.lld -shared -o %t.so %t1.o
9 # RUN: llvm-mc -filetype=obj -triple=x86_64-linux-gnu -o %t2.o %s
11 # RUN: llvm-ar cru %t.a %t2.o
12 # RUN: ld.lld -o %t.exe %t.so %t.a
13 # RUN: llvm-nm -D %t.exe | FileCheck %s