2017-12-27 15:29:55 +08:00
|
|
|
# REQUIRES: x86
|
|
|
|
# RUN: llvm-mc -filetype=obj -triple=x86_64-pc-linux %s -o %t.o
|
2020-02-13 13:48:45 +08:00
|
|
|
# RUN: not ld.lld -z notext -shared %t.o -o /dev/null 2>&1 | FileCheck %s
|
2021-11-01 03:10:42 +08:00
|
|
|
# CHECK: error: relocation R_X86_64_32 cannot be used against symbol 'foo'; recompile with -fPIC
|
2017-12-27 15:29:55 +08:00
|
|
|
|
|
|
|
# RUN: ld.lld -z notext %t.o -o %t
|
|
|
|
# RUN: llvm-readobj -r %t | FileCheck %s --check-prefix=EXE
|
|
|
|
# EXE: Relocations [
|
|
|
|
# EXE-NEXT: ]
|
|
|
|
|
|
|
|
.weak foo
|
|
|
|
|
|
|
|
_start:
|
|
|
|
mov $foo,%eax
|