-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathllvm-hs-typed.cabal
63 lines (60 loc) · 2.05 KB
/
llvm-hs-typed.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
-- Initial llvm-hs-typed.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: llvm-hs-typed
version: 5.0.0.0
synopsis: LLVM AST with type-level tracking of LLVM types
description:
llvm-hs-typed provides a type-safe way of producin LLVM IR
(<http://llvm.org/docs/LangRef.html>). Type-safety here means that phantom
types and type level computation are used to track the LLVM types of names,
operations, instructions.
The module structure mirrors that of llvm-hs-pure.
homepage: https://github.com/llvm-hs/llvm-hs-typed
license: BSD3
license-file: LICENSE
author: Joachim Breitner
maintainer: [email protected]
copyright: 2017 Joachim Breitner
category: Compilers/Interpreters, Code Generation
build-type: Simple
extra-source-files: ChangeLog.md
cabal-version: >=1.10
tested-with: GHC == 8.0.2
library
exposed-modules:
LLVM.AST.TypeLevel.Type
LLVM.AST.TypeLevel.Utils
LLVM.AST.Tagged
LLVM.AST.Tagged.Tag
LLVM.AST.Tagged.Instruction
LLVM.AST.Tagged.Name
LLVM.AST.Tagged.Visibility
LLVM.AST.Tagged.Operand
LLVM.AST.Tagged.Attribute
LLVM.AST.Tagged.Global
LLVM.AST.Tagged.Constant
LLVM.AST.Tagged.Float
LLVM.AST.Tagged.COMDAT
LLVM.AST.Tagged.InlineAssembly
LLVM.AST.Tagged.Type
LLVM.AST.Tagged.CallingConvention
LLVM.AST.Tagged.ThreadLocalStorage
LLVM.AST.Tagged.ParameterAttribute
LLVM.AST.Tagged.Linkage
LLVM.AST.Tagged.FloatingPointPredicate
LLVM.AST.Tagged.FunctionAttribute
LLVM.AST.Tagged.AddrSpace
LLVM.AST.Tagged.DLL
LLVM.AST.Tagged.IntegerPredicate
LLVM.AST.Tagged.DataLayout
LLVM.AST.Tagged.RMWOperation
LLVM.AST.Tagged.IRBuilder
build-depends:
base >= 4.7 && <5,
llvm-hs-pure == 5.1.*,
llvm-hs-pretty >= 0.2,
bytestring >= 0.10 && < 0.11,
encode-string == 0.1.*,
hvect == 0.4.*
hs-source-dirs: src
default-language: Haskell2010