-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathfcore.cabal
184 lines (178 loc) · 6.62 KB
/
fcore.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
name: fcore
version: 0.1.0
cabal-version: >= 1.10
build-type: Simple
license: BSD3
license-file: LICENSE
copyright: (c) 2014—2015 The F2J Project Developers (given in AUTHORS.txt)
category: Language
stability: experimental
tested-with: GHC == 7.10.2
data-files: runtime/runtime.jar
source-repository head
type: git
location: git://github.com:hkuplg/fcore.git
library
default-language: Haskell2010
build-depends: ansi-wl-pprint == 0.6.*
, array == 0.5.*
, base == 4.*
, containers == 0.5.*
, directory == 1.2.*
, extra == 1.4.*
, filepath == 1.4.*
, haskeline == 0.7.*
, language-java == 0.2.*
, microlens == 0.2.0.*
, microlens-th == 0.2.1.*
, mtl == 2.2.*
, parsec == 3.1.*
, pretty == 1.1.*
, th-lift == 0.7.*
, process == 1.2.*
, split == 0.2.*
, template-haskell == 2.10.*
, time == 1.5.*
, transformers == 0.4.*
, unbound-generics == 0.2
build-tools: alex == 3.1.*,
happy == 1.19.*
hs-source-dirs: frontend
, frontend/abstractsyntax
, frontend/parse
, frontend/services
, frontend/simplify
, frontend/typecheck
, backend
, backend/newlib
, repl
exposed-modules: ApplyTransCFJava
BackEnd
BaseTransCFJava
BaseTrans
Checker
ClosureF
Config
Core
Desugar
Environment
FileIO
FrontEnd
History
IOEnv
Inheritance
Inliner
JavaEDSL
JavaLang
PrettyPrint
JavaUtils
JvmTypeQuery
Lexer
Loop
Mixin
MonadLib
OptiUtils
Panic
ParseCMD
Parser
PartialEvaluator
PrettyUtils
Problem
RuntimeProcessManager
Simplify
Syntax
Src
SrcLoc
StackTransCFJava
StaticAssert
StringPrefixes
StringUtils
SystemFI
TransEnvironment
TypeCheck
TypeErrors
other-modules: Paths_fcore
SimplifyImpl
if flag(Z3)
exposed-modules: SymbolicEvaluator
, Z3Backend
, Z3ModelParser
build-depends: z3 > 0.3.2
cpp-options: -DZ3
executable f2j
default-language: Haskell2010
hs-source-dirs: compiler
main-is: Main.hs
build-depends: ansi-wl-pprint == 0.6.*
, array == 0.5.*
, base == 4.*
, clock == 0.5.*
, containers == 0.5.*
, directory == 1.2.*
, fcore
, filepath == 1.4.*
, haskeline == 0.7.*
, language-java == 0.2.*
, mtl == 2.2.*
, optparse-applicative
, parsec == 3.1.*
, pretty == 1.1.*
, process == 1.2.*
, split == 0.2.*
, template-haskell == 2.10.*
, time == 1.5.*
, transformers == 0.4.*
ghc-options: -Wall
-fno-warn-missing-signatures
-fno-warn-name-shadowing
-fno-warn-unused-binds
-fno-warn-unused-matches
Flag Z3
description: SMT solver for symbolic evaluator
default: False
executable f2ji
default-language: Haskell2010
hs-source-dirs: repl
main-is: Main.hs
other-modules: Environment History
build-depends: fcore
, ansi-wl-pprint == 0.6.*
, array == 0.5.*
, base == 4.*
, containers == 0.5.*
, directory == 1.2.*
, filepath == 1.4.*
, haskeline == 0.7.*
, language-java == 0.2.*
, mtl == 2.2.*
, parsec == 3.1.*
, pretty == 1.1.*
, process == 1.2.*
, split == 0.2.*
, template-haskell == 2.10.*
, time == 1.5.*
, transformers == 0.4.*
ghc-options: -Wall
-fno-warn-missing-signatures
-fno-warn-name-shadowing
-fno-warn-unused-binds
-fno-warn-unused-matches
test-suite test
default-language: Haskell2010
type: exitcode-stdio-1.0
hs-source-dirs: testsuite,testsuite/tests
main-is: Test.hs
other-modules: ModuleSpec
SpecHelper
TestTerms
TransCFSpec
TypeCheckSpec
build-depends: fcore
, base == 4.*
, containers == 0.5.*
, directory == 1.2.*
, filepath == 1.4.*
, language-java == 0.2.*
, process == 1.2.*
, tasty == 0.10.*
, tasty-hspec == 1.1.*