Lines Matching full:machine

16 Mixing bitcode and normal object files with the same machine type is ok:
28 Mixing object files with different machine type is not ok:
32 OBJ32: i386.obj: file machine type x86 conflicts with library machine type x64 (inferred from earli…
35 Neither is mixing object and bitcode files with different machine type:
39 BC32: i386.bc: file machine type x86 conflicts with library machine type x64 (inferred from earlier…
43 BC64: x86_64.bc: file machine type x64 conflicts with library machine type arm64 (inferred from ear…
46 If /machine: is passed, its value is authoritative.
48 RUN: not llvm-lib /machine:X86 %t/x86_64.obj %t/i386.obj 2>&1 | \
50 OBJ64: x86_64.obj: file machine type x64 conflicts with library machine type x86 (from '/machine:X8…
55 RUN: llvm-lib -machine:arm64ec %t/arm64.bc %t/x86_64.bc %t/arm64.obj %t/x86_64.obj %t/arm64ec.obj %…
56 RUN: llvm-lib -machine:arm64x %t/arm64.bc %t/x86_64.bc %t/arm64.obj %t/x86_64.obj %t/arm64ec.obj %t…
57 RUN: llvm-lib -machine:arm64 %t/arm64.bc %t/arm64.obj %t/arm64x.obj
60 NOEC: arm64ec.obj: file machine type arm64ec conflicts with inferred library machine type, use /mac…
62 RUN: not llvm-lib -machine:arm64ec %t/arm64ec.obj %t/i386.obj 2>&1 | \
64 RUN: not llvm-lib -machine:arm64x %t/arm64ec.obj %t/i386.obj 2>&1 | \
66 RUN: not llvm-lib -machine:x64 %t/x86_64.obj %t/arm64x.obj 2>&1 | \
68 OBJEC: i386.obj: file machine type x86 conflicts with library machine type arm64ec (from '/machine:…
69 OBJX: i386.obj: file machine type x86 conflicts with library machine type arm64x (from '/machine:a…
70 OBJX2: arm64x.obj: file machine type arm64x conflicts with library machine type x64 (from '/machine
72 RUN: not llvm-lib -machine:arm64ec %t/arm64.bc %t/x86_64.bc %t/i386.bc 2>&1 | \
74 RUN: not llvm-lib -machine:arm64x %t/arm64.bc %t/x86_64.bc %t/i386.bc 2>&1 | \
76 BCEC: i386.bc: file machine type x86 conflicts with library machine type arm64ec (from '/machine:ar…
77 BCX: i386.bc: file machine type x86 conflicts with library machine type arm64x (from '/machine:arm…