-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.yaml
102 lines (96 loc) · 2.04 KB
/
package.yaml
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
name: htcc
version: 0.0.0.1
synopsis: The full scratch implementation of tiny C compiler (x86_64)
description: |
The full scratch implementation of tiny C compiler (x86_64).
This compiler outputs x86_64 assembly code from "general" C code.
.
It consists of:
.
* the lexical analyzer
* the parser that performs parsing with recursive descent and construction of abstract syntax trees (ASTs)
* the method that outputs x86_64 assembly code from ASTs
.
__This compiler is not practical purposes__, but focuses on implementation experiments.
.
For more information, please see the README on GitHub at <https://github.com/falgon/htcc#readme>.
category: Compiler
github: "falgon/htcc"
license: MIT
author: "roki"
maintainer: "[email protected]"
copyright: "2019 roki"
extra-source-files:
- README.md
- ChangeLog.md
dependencies:
- base >= 4.7 && < 5
- ansi-wl-pprint
- cond
- extra
- text
- split
- monad-loops
- containers
- bytestring
- deepseq
- safe
- mtl
- monad-finally
- mono-traversable
- transformers
- diagrams-svg
- diagrams-contrib
- diagrams-lib
- natural-transformation
- optparse-applicative
library:
source-dirs: src
executables:
htcc:
main: Main.hs
source-dirs: app
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
- -Wall
- -Werror
- -O2
dependencies:
- htcc
- directory
tests:
htcc-test:
main: Spec.hs
source-dirs: test
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
- -Wall
- -O2
dependencies:
- htcc
- HUnit
- turtle
- text
- directory
- time
- foldl
- hspec
- hspec-core
- hspec-contrib
- filepath
- dhall-json
- dhall-yaml
- process
- utf8-string
benchmarks:
criterion:
main: bench/Criterion.hs
ghc-options:
- -O2
dependencies:
- criterion
- htcc