150
|
1 // REQUIRES: x86,aarch64
|
|
2 // RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux %s -o %ta.o
|
|
3 // RUN: llvm-mc -filetype=obj -triple=i686-unknown-linux %s -o %tb.o
|
|
4 // RUN: ld.lld -shared %tb.o -o %ti686.so
|
|
5 // RUN: llvm-mc -filetype=obj -triple=aarch64-unknown-linux %s -o %tc.o
|
|
6
|
173
|
7 // RUN: not ld.lld %ta.o %tb.o -o /dev/null 2>&1 | \
|
150
|
8 // RUN: FileCheck --check-prefix=A-AND-B %s
|
|
9 // A-AND-B: b.o is incompatible with {{.*}}a.o
|
|
10
|
173
|
11 // RUN: not ld.lld %tb.o %tc.o -o /dev/null 2>&1 | \
|
150
|
12 // RUN: FileCheck --check-prefix=B-AND-C %s
|
|
13 // B-AND-C: c.o is incompatible with {{.*}}b.o
|
|
14
|
173
|
15 // RUN: not ld.lld %ta.o %ti686.so -o /dev/null 2>&1 | \
|
150
|
16 // RUN: FileCheck --check-prefix=A-AND-SO %s
|
|
17 // A-AND-SO: i686.so is incompatible with {{.*}}a.o
|
|
18
|
173
|
19 // RUN: not ld.lld %tc.o %ti686.so -o /dev/null 2>&1 | \
|
150
|
20 // RUN: FileCheck --check-prefix=C-AND-SO %s
|
|
21 // C-AND-SO: i686.so is incompatible with {{.*}}c.o
|
|
22
|
173
|
23 // RUN: not ld.lld %ti686.so %tc.o -o /dev/null 2>&1 | \
|
150
|
24 // RUN: FileCheck --check-prefix=SO-AND-C %s
|
|
25 // SO-AND-C: c.o is incompatible with {{.*}}i686.so
|
|
26
|
173
|
27 // RUN: not ld.lld -m elf64ppc %ta.o -o /dev/null 2>&1 | \
|
150
|
28 // RUN: FileCheck --check-prefix=A-ONLY %s
|
|
29 // A-ONLY: a.o is incompatible with elf64ppc
|
|
30
|
173
|
31 // RUN: not ld.lld -m elf64ppc %tb.o -o /dev/null 2>&1 | \
|
150
|
32 // RUN: FileCheck --check-prefix=B-ONLY %s
|
|
33 // B-ONLY: b.o is incompatible with elf64ppc
|
|
34
|
173
|
35 // RUN: not ld.lld -m elf64ppc %tc.o -o /dev/null 2>&1 | \
|
150
|
36 // RUN: FileCheck --check-prefix=C-ONLY %s
|
|
37 // C-ONLY: c.o is incompatible with elf64ppc
|
|
38
|
173
|
39 // RUN: not ld.lld -m elf_i386 %tc.o %ti686.so -o /dev/null 2>&1 | \
|
150
|
40 // RUN: FileCheck --check-prefix=C-AND-SO-I386 %s
|
|
41 // C-AND-SO-I386: c.o is incompatible with elf_i386
|
|
42
|
173
|
43 // RUN: not ld.lld -m elf_i386 %ti686.so %tc.o -o /dev/null 2>&1 | \
|
150
|
44 // RUN: FileCheck --check-prefix=SO-AND-C-I386 %s
|
|
45 // SO-AND-C-I386: c.o is incompatible with elf_i386
|
|
46
|
173
|
47 // RUN: echo 'OUTPUT_FORMAT(elf32-i386)' > %t.script
|
|
48 // RUN: not ld.lld %t.script %ta.o -o /dev/null 2>&1 | \
|
|
49 // RUN: FileCheck --check-prefix=A-AND-SCRIPT %s
|
|
50 // RUN: not ld.lld %ta.o %t.script -o /dev/null 2>&1 | \
|
|
51 // RUN: FileCheck --check-prefix=A-AND-SCRIPT %s
|
|
52 // RUN: not ld.lld -m elf_x86_64 %ta.o %t.script -o /dev/null 2>&1 | \
|
|
53 // RUN: FileCheck --check-prefix=A-AND-SCRIPT %s
|
|
54 // A-AND-SCRIPT: a.o is incompatible with elf32-i386
|
|
55
|
|
56 // RUN: echo 'OUTPUT_FORMAT(elf32-i386-freebsd)' > %t-freebsd.script
|
|
57 // RUN: not ld.lld %t-freebsd.script %ta.o -o /dev/null 2>&1 | \
|
|
58 // RUN: FileCheck --check-prefix=A-AND-FREEBSD-SCRIPT %s
|
|
59 // A-AND-FREEBSD-SCRIPT: a.o is incompatible with elf32-i386-freebsd
|
150
|
60
|
|
61 // We used to fail to identify this incompatibility and crash trying to
|
|
62 // read a 64 bit file as a 32 bit one.
|
|
63 // RUN: llvm-mc -filetype=obj -triple=x86_64-pc-linux %p/Inputs/archive2.s -o %ta.o
|
|
64 // RUN: rm -f %t.a
|
|
65 // RUN: llvm-ar rc %t.a %ta.o
|
|
66 // RUN: llvm-mc -filetype=obj -triple=i686-linux %s -o %tb.o
|
173
|
67 // RUN: not ld.lld %t.a %tb.o 2>&1 -o /dev/null | FileCheck --check-prefix=ARCHIVE %s
|
150
|
68 // ARCHIVE: .a({{.*}}a.o) is incompatible with {{.*}}b.o
|
|
69 .global _start
|
|
70 _start:
|
|
71 .data
|
|
72 .long foo
|
|
73
|