You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
533 B
20 lines
533 B
# RUN: yaml2obj %s -o %t
|
|
|
|
# RUN: llvm-lipo %t -archs | FileCheck --check-prefix=ARCHS %s
|
|
# RUN: llvm-lipo %t --archs | FileCheck --check-prefix=ARCHS %s
|
|
# ARCHS: i386
|
|
|
|
# RUN: not llvm-lipo %t %t -archs 2>&1 | FileCheck --check-prefix=MULTIPLE_INPUT_OBJ %s
|
|
# MULTIPLE_INPUT_OBJ: archs expects a single input file
|
|
|
|
--- !mach-o
|
|
FileHeader:
|
|
magic: 0xFEEDFACE
|
|
cputype: 0x00000007
|
|
cpusubtype: 0x00000003
|
|
filetype: 0x00000001
|
|
ncmds: 0
|
|
sizeofcmds: 0
|
|
flags: 0x00002000
|
|
...
|