-
Notifications
You must be signed in to change notification settings - Fork 34
/
llvm.cabal
90 lines (80 loc) · 2.1 KB
/
llvm.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
name: llvm
version: 3.2.0.2
license: BSD3
license-file: LICENSE
synopsis: Bindings to the LLVM compiler toolkit.
description:
High-level bindings to the LLVM compiler toolkit.
.
* New in 3.2.0.0: Builds against LLVM 3.2
.
* New in 3.0.0.0: The low-level bindings have been split into the
llvm-base package.
.
* New in 0.9.1.1: Builds against LLVM 2.9.
.
* New in 0.9.1.0: Util.Memory for memory related intrinsics.
.
* New in 0.9.0.0: Adapted to LLVM 2.8 (removed support for Union types).
author: Bryan O'Sullivan, Lennart Augustsson
maintainer: Bryan O'Sullivan <[email protected]>,
Lennart Augustsson <[email protected]>
homepage: https://github.com/bos/llvm
bug-reports: https://github.com/bos/llvm/issues
stability: experimental
category: Compilers/Interpreters, Code Generation
tested-with: GHC == 6.12.3, GHC == 7.0.4, GHC == 7.2.2
cabal-version: >= 1.10
build-type: Simple
extra-source-files:
*.md
examples/*.c
examples/*.hs
tests/*.hs
tests/Makefile
flag developer
description: operate in developer mode
default: False
library
default-language: Haskell98
build-depends:
base >= 3 && < 5,
bytestring >= 0.9,
directory,
llvm-base >= 3.2.0.2 && < 4,
mtl,
process,
type-level,
containers
ghc-options: -Wall
if flag(developer)
ghc-options: -Werror
if os(darwin)
ld-options: -w
frameworks: vecLib
cpp-options: -D__MACOS__
exposed-modules:
LLVM.Core
LLVM.ExecutionEngine
LLVM.Util.Arithmetic
LLVM.Util.File
LLVM.Util.Foreign
LLVM.Util.Loop
LLVM.Util.Memory
LLVM.Util.Optimize
other-modules:
LLVM.Core.CodeGen
LLVM.Core.CodeGenMonad
LLVM.Core.Data
LLVM.Core.Instructions
LLVM.Core.Type
LLVM.Core.Util
LLVM.Core.Vector
LLVM.ExecutionEngine.Engine
LLVM.ExecutionEngine.Target
source-repository head
type: git
location: git://github.com/bos/llvm.git
source-repository head
type: mercurial
location: https://bitbucket.org/bos/llvm/