blob: 3fe06f57fbd5600366927602be70d36fb06bd35e (
plain)
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
# Ducc

Ducc, Decidedly Unimplemented C compiler, is a toy C compiler.
## Dependencies
* gcc
* make
* [just](https://github.com/casey/just)
### Optional: Nix support
This project includes Nix support with flake.
To build:
```
$ nix build
```
To develop:
```
$ nix develop
```
## Build
```
$ just build
```
```
$ just build-upto-5-gen
```
## Test
```
$ just test
```
```
$ just test-self-hosted
```
## License
See [LICENSE](./LICENSE).
|