2 # RUN: llvm-mc -filetype=obj -triple=x86_64 %s -o %t.o
3 # RUN: llvm-mc -filetype=obj -triple=x86_64 %p/Inputs/shared.s -o %t2.o
4 # RUN: ld.lld %t2.o -shared -o %t2.so --threads=1
5 # RUN: not ld.lld -pie %t.o %t2.so -o /dev/null --threads=1 2>&1 | FileCheck %s
6 # RUN: not ld.lld -shared %t.o %t2.so -o /dev/null --threads=1 2>&1 | FileCheck %s
8 # CHECK: error: relocation R_X86_64_32 cannot be used against symbol 'zed'; recompile with -fPIC
9 # CHECK-NEXT: >>> defined in {{.*}}.so
10 # CHECK-NEXT: >>> referenced by {{.*}}.o:(.data+0x0)
12 # CHECK-NEXT: error: relocation R_X86_64_PC32 cannot be used against symbol 'zed'; recompile with -fPIC
13 # CHECK-NEXT: >>> defined in {{.*}}.so
14 # CHECK-NEXT: >>> referenced by {{.*}}.o:(.data+0x4)
16 # CHECK-NEXT: error: relocation R_X86_64_64 cannot be used against symbol '_start'; recompile with -fPIC
17 # CHECK: error: relocation R_X86_64_64 cannot be used against symbol 'main'; recompile with -fPIC
18 # CHECK: error: relocation R_X86_64_64 cannot be used against symbol 'data'; recompile with -fPIC
21 # RUN: ld.lld --noinhibit-exec %t.o %t2.so -o /dev/null 2>&1 | FileCheck --check-prefix=WARN %s
22 # RUN: not ld.lld --export-dynamic --unresolved-symbols=ignore-all %t.o %t2.so -o /dev/null 2>&1 | FileCheck --check-prefix=WARN %s
24 # WARN: relocation R_X86_64_32 cannot be used against symbol 'zed'; recompile with -fPIC
25 # WARN: relocation R_X86_64_PC32 cannot be used against symbol 'zed'; recompile with -fPIC
27 .global _start, main, data