Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/alexdenisov/mbx
Supplementary material for my talk
https://github.com/alexdenisov/mbx
Last synced: about 1 month ago
JSON representation
Supplementary material for my talk
- Host: GitHub
- URL: https://github.com/alexdenisov/mbx
- Owner: AlexDenisov
- Created: 2015-07-19T10:47:53.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-07-20T09:42:25.000Z (over 9 years ago)
- Last Synced: 2024-10-05T21:53:28.443Z (about 2 months ago)
- Language: LLVM
- Homepage: https://speakerdeck.com/alexdenisov/magic-behind-xcode
- Size: 121 KB
- Stars: 5
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Magic Behind Xcode. Compilation
Supplementary material for my talk: https://speakerdeck.com/alexdenisov/magic-behind-xcode
### Linker
```bash
make linker
```### Dump ObjC tokens
```bash
make dump_tokens_clang
```### Dump Clang's AST
```bash
make dump_ast_clang
```### Dump ObjC classes
```bash
make dump_classes_clang
```### Dump Swift's AST
```bash
make dump_ast_swift
```### Dump Swift classes
```bash
make dump_classes_swift
```### Dump Clang's IR
```bash
make dump_ir_clang
```### Dump Swift's IR
```bash
make dump_ir_swift
```