1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 18:54:02 +01:00
llvm-mirror/test/Object/Inputs/tapi-v3.tbd
Cyndy Ishida fd46376e35 [llvm][llvm-nm] add TextAPI/MachO support
Summary:
This completes the needed glueing to support reading tbd files from nm.
This includes specifying which slice filtering with `--arch` and a new
option specifically for tbd files `--add-inlinedinfo` which will show
the reexported libraries that are appended in the tbd file.

Reviewers: ributzka, steven_wu, JDevlieghere, jhenderson

Reviewed By: JDevlieghere

Subscribers: hiraditya, MaskRay, dexonsmith, rupprecht, llvm-commits

Tags: #llvm

Differential Revision: https://reviews.llvm.org/D81614
2020-06-11 18:54:16 -07:00

25 lines
588 B
Plaintext

--- !tapi-tbd-v3
archs: [ i386, x86_64 ]
platform: ios
install-name: /usr/lib/libfoo.dylib
swift-abi-version: 3
exports:
- archs: [ i386, x86_64 ]
re-exports: [ /usr/lib/external/liba.dylib ]
symbols: [ _sym1, _sym2 ]
objc-classes: [ NSString, NSBlockPredicate ]
objc-eh-types: [ NSString ]
objc-ivars: [ NSBlockPredicate._block ]
- archs: [ i386 ]
symbols: [ _sym3 ]
--- !tapi-tbd-v3
archs: [ x86_64 ]
platform: ios
install-name: /usr/lib/liba.dylib
swift-abi-version: 3
parent-umbrella: foo
exports:
- archs: [ x86_64 ]
symbols: [ _sym10, _sym11 ]
...