-
Notifications
You must be signed in to change notification settings - Fork 2
/
dimlCompiler.cabal
49 lines (46 loc) · 1.69 KB
/
dimlCompiler.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
name: dimlCompiler
version: 0.1.0.0
synopsis: A compiler written in Haskell for a toy language diML (diminished ML). Target language is LLVM.
description: Please see README.md
homepage: http://github.com/githubuser/dimlCompiler#readme
license: BSD3
license-file: LICENSE
author: Thomas Dietert
maintainer: [email protected]
copyright: 2010 Thomas Dietert
category: Web
build-type: Simple
data-files: builtins/builtins.ll
cabal-version: >=1.10
test-suite test
hs-source-dirs: test
main-is: Spec.hs
type: exitcode-stdio-1.0
build-depends: base
default-language: Haskell2010
library
hs-source-dirs: src
build-depends: base >= 4.7 && < 5,
parsec,
mtl,
transformers,
haskeline,
llvm-general-pure >= 3.4,
llvm-general >= 3.4,
directory,
containers >=0.4.2.1
default-language: Haskell2010
executable dimlCompiler
hs-source-dirs: src
main-is: Main.hs
other-modules: JIT,IR,Syntax,TypeInfer,Lexer,Parser,Codegen,EmitLLVM,Type
default-language: Haskell2010
build-depends: base >= 4.7 && < 5,
parsec,
mtl,
transformers,
haskeline,
directory,
containers >= 0.4.2.1,
llvm-general-pure >= 3.4,
llvm-general >= 3.4