reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | # RUN: yaml2obj %p/Inputs/i386-slice.yaml > %t-i386.o # RUN: yaml2obj %p/Inputs/x86_64-slice.yaml > %t-x86_64.o # RUN: yaml2obj %p/Inputs/i386-x86_64-universal.yaml > %t-universal.o # RUN: llvm-ar cr %t.empty.a # RUN: not llvm-lipo %t.empty.a -create -output /dev/null 2>&1 | FileCheck --check-prefix=EMPTY-ARCHIVE %s # RUN: llvm-ar cr %t.different_architectures.a %t-i386.o %t-x86_64.o # RUN: not llvm-lipo %t.different_architectures.a -create -output /dev/null 2>&1 | FileCheck --check-prefix=ARCHIVE-WITH-DIFFERENT-ARCHS %s # RUN: llvm-ar cr %t.contains_fat_binary.a %t-universal.o # RUN: not llvm-lipo %t.contains_fat_binary.a -create -output /dev/null 2>&1 | FileCheck --check-prefix=ARCHIVE-WITH-FAT-BINARY %s # RUN: llvm-ar cr %t-i386-lib.a %t-i386.o # RUN: llvm-lipo %t-i386-lib.a %t-x86_64.o -create -output %t-i386-x86_64-universal.o # RUN: llvm-lipo %t-i386-x86_64-universal.o -info | FileCheck --check-prefix=INFO-i386-x86_64 %s # RUN: llvm-lipo %t-i386-x86_64-universal.o -thin i386 -output %t-extracted-i386-lib.a # RUN: cmp %t-extracted-i386-lib.a %t-i386-lib.a # RUN: llvm-lipo %t-i386-x86_64-universal.o -thin x86_64 -output %t-extracted-x86_64.o # RUN: cmp %t-extracted-x86_64.o %t-x86_64.o # # EMPTY-ARCHIVE: empty archive # ARCHIVE-WITH-DIFFERENT-ARCHS: all members must match # ARCHIVE-WITH-FAT-BINARY: fat file (not allowed in an archive) # # INFO-i386-x86_64: i386 x86_64 |