blob: a4a6d6310e7b13f9884eea32053fd3e3e2ceb1ea (
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
|
# 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 2
$ just build 3
```
## Test
```
$ just test
$ just test-self-hosted
$ just test-all
```
## License
See [LICENSE](./LICENSE).
|