Files
clang-p2996/llvm/test/tools/llvm-objcopy/MachO/lc-load-weak-dylib.test
Alexander Shaposhnikov d987eed91d [llvm-objcopy][MachO] Copy LC_LOAD_WEAK_DYLIB load commands
LC_LOAD_WEAK_DYLIB is analogous to LC_LOAD_DYLIB and doesn't require any special handling.

Test plan: make check-all

Differential revision: https://reviews.llvm.org/D78602
2020-04-23 12:21:44 -07:00

26 lines
624 B
Plaintext

# RUN: yaml2obj %s -o %t
# RUN: llvm-objcopy %t %t.copy
# RUN: cmp %t %t.copy
--- !mach-o
FileHeader:
magic: 0xFEEDFACF
cputype: 0x0100000C
cpusubtype: 0x00000000
filetype: 0x00000002
ncmds: 1
sizeofcmds: 80
flags: 0x00002000
reserved: 0x00000000
LoadCommands:
- cmd: LC_LOAD_WEAK_DYLIB
cmdsize: 80
dylib:
name: 24
timestamp: 2
current_version: 65536
compatibility_version: 65536
PayloadString: '/System/Library/Frameworks/Network.framework/Network'
ZeroPadBytes: 4
...