forked from ku-fpg/kansas-lava
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathkansas-lava.cabal
197 lines (184 loc) · 5.33 KB
/
kansas-lava.cabal
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
Name: kansas-lava
Version: 0.2.4.5
Synopsis: Kansas Lava is a hardware simulator and VHDL generator.
Description:
Kansas Lava is a Domain Specific Language (DSL) for expressing
hardware-oriented descriptions of computations, and is hosted inside
the language Haskell. Kansas Lava programs are descriptions of
specific hardware entities, the connections between them, and other
computational abstractions that can compile down to these entities.
Category: Language, Hardware
License: BSD3
License-file: LICENSE
Author: Andy Gill
Maintainer: Andy Gill <andygill@ku.edu>
Copyright: (c) 2009-2011 The University of Kansas
Homepage: http://ittc.ku.edu/csdl/fpg/Tools/KansasLava
Stability: alpha
build-type: Simple
Cabal-Version: >= 1.10
Data-files:
Prelude/VHDL/*.vhd,
Prelude/HTML/*.inc
extra-source-files:
tests/Makefile
README
Flag all
Description: Enable full development tree
Default: False
Flag unit
Description: Enable unit testing binary
Default: False
Flag tools
Description: Enable extra tool binary
Default: False
Library
Build-Depends:
base >= 4 && < 5,
dotgen >= 0.4.1,
containers,
sized-types >= 0.3.5.2 && < 0.4,
data-default,
random,
strict,
filepath,
directory,
cmdargs,
process,
netlist >= 0.3.1,
netlist-to-vhdl >= 0.3.1,
template-haskell >= 2.11,
bytestring,
data-reify == 0.6
Exposed-modules:
Language.KansasLava
Language.KansasLava.DOT
Language.KansasLava.Entity
Language.KansasLava.Fabric
Language.KansasLava.Optimization
Language.KansasLava.Probes
Language.KansasLava.Protocols
Language.KansasLava.Rep
Language.KansasLava.RTL
Language.KansasLava.Signal
Language.KansasLava.Test
Language.KansasLava.Types
Language.KansasLava.Utils
Language.KansasLava.VHDL
Language.KansasLava.Stream
Language.KansasLava.Dynamic
Language.KansasLava.VCD
Other-modules:
Language.KansasLava.Internal
Language.KansasLava.Rep.TH
Language.KansasLava.Rep.Class
Language.KansasLava.Netlist.Decl
Language.KansasLava.Netlist.Inst
Language.KansasLava.Netlist.Utils
Language.KansasLava.Protocols.Enabled
Language.KansasLava.Protocols.Memory
Language.KansasLava.Protocols.AckBox
Language.KansasLava.Protocols.ReadyBox
Language.KansasLava.Protocols.Types
Language.KansasLava.Protocols.Patch
Language.KansasLava.VCD.EventList
Paths_kansas_lava
-- need a module refactor to address the orphan warnings
Ghc-Options: -Wall -fno-warn-orphans -fno-warn-tabs
default-language: Haskell2010
-- Ghc-Prof-options: -auto-all
Executable kansas-lava-unittest
if flag(unit) || flag(all)
buildable: True
Build-Depends:
base >= 4 && < 5,
dotgen >= 0.4.1,
containers,
sized-types >= 0.3.4,
data-default,
random,
strict,
filepath,
directory,
cmdargs,
process,
netlist >= 0.3.1,
netlist-to-vhdl >= 0.3.1,
template-haskell,
bytestring,
data-reify == 0.6
Other-modules:
Coerce Matrix Memory Others Protocols Regression
else
Build-depends: base
buildable: False
Main-Is: Main.hs
Hs-Source-Dirs: ., tests
Ghc-Options: -Wall -fno-warn-tabs
-fno-warn-orphans -fcontext-stack=256
-threaded -rtsopts
default-language: Haskell2010
Executable kansas-lava-testreport
if flag(unit) || flag(all)
buildable: True
Build-Depends:
base >= 4 && < 5,
dotgen >= 0.4.1,
containers,
sized-types >= 0.3.4,
data-default,
random,
strict,
filepath,
directory,
cmdargs,
process,
netlist >= 0.3.1,
netlist-to-vhdl >= 0.3.1,
template-haskell,
bytestring,
data-reify == 0.6
Other-modules:
else
Build-depends: base
buildable: False
Main-Is: GenReport.hs
Hs-Source-Dirs: ., tests
Ghc-Options: -Wall -fno-warn-tabs -fno-warn-incomplete-patterns
-fno-warn-orphans -fcontext-stack=256
default-language: Haskell2010
Executable kansas-lava-tbf2vcd
if flag(tools) || flag(all)
Build-Depends:
base >= 4 && < 5,
dotgen >= 0.4.1,
containers,
sized-types >= 0.3.4,
data-default,
random,
strict,
filepath,
directory,
cmdargs,
process,
netlist >= 0.3.1,
netlist-to-vhdl >= 0.3.1,
template-haskell,
bytestring,
data-reify == 0.6
buildable: True
else
Build-depends: base
buildable: False
Main-Is: TBF2VCD.hs
Hs-Source-Dirs: ., tools
Ghc-Options: -Wall -fno-warn-tabs -fno-warn-orphans
default-language: Haskell2010
source-repository head
type: git
location: git://github.com/ku-fpg/kansas-lava.git
source-repository this
type: git
location: git://github.com/ku-fpg/kansas-lava.git
branch: kansas-lava-0.2.4
tag: 0.2.4.3