Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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
```