forked from bos/llvm
-
Notifications
You must be signed in to change notification settings - Fork 1
/
llvm.cabal
130 lines (120 loc) · 3.09 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
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
name: llvm
version: 0.10.0.0
license: BSD3
license-file: LICENSE
synopsis: Bindings to the LLVM compiler toolkit.
description:
Bindings to the LLVM compiler toolkit.
.
We try to stay up to date with LLVM releases. The current version
of this package is compatible with LLVM 2.9 and 2.8. Please
understand that the package may or may not work against older LLVM
releases; we don't have the time or resources to test across
multiple releases.
.
* 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.10.4, GHC == 6.12.3, GHC == 7.0.3
cabal-version: >= 1.10
build-type: Custom
extra-source-files:
*.md
Makefile
configure.ac
examples/*.c
examples/*.hs
include/extra.h
include/hs_llvm_config.h.in
include/support.h
llvm.buildinfo.in
llvm.buildinfo.windows.in
tests/*.hs
tests/Makefile
tools/*.hs
tools/Makefile
extra-tmp-files:
autom4te.cache
config.log
config.status
configure
include/hs_llvm_config.h
llvm.buildinfo
library
default-language: Haskell98
build-depends:
base >= 3 && < 5,
bytestring >= 0.9,
directory,
mtl,
process,
type-level,
containers
ghc-options: -Wall
if os(darwin)
ld-options: -w
frameworks: vecLib
cpp-options: -D__MACOS__
exposed-modules:
LLVM.Core
LLVM.ExecutionEngine
LLVM.FFI.Analysis
LLVM.FFI.BitReader
LLVM.FFI.BitWriter
LLVM.FFI.Core
LLVM.FFI.ExecutionEngine
LLVM.FFI.Support
LLVM.FFI.Target
LLVM.FFI.Transforms.IPO
LLVM.FFI.Transforms.Scalar
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
LLVM.Target.ARM
LLVM.Target.Alpha
LLVM.Target.Blackfin
LLVM.Target.CBackend
LLVM.Target.CellSPU
LLVM.Target.CppBackend
LLVM.Target.MSP430
LLVM.Target.Mips
LLVM.Target.Native
LLVM.Target.PIC16
LLVM.Target.PowerPC
LLVM.Target.Sparc
LLVM.Target.SystemZ
LLVM.Target.X86
LLVM.Target.XCore
include-dirs: include
C-Sources:
cbits/extra.cpp
cbits/free.c
cbits/malloc.c
cbits/support.cpp
source-repository head
type: git
location: https://github.com/bos/llvm/
source-repository head
type: mercurial
location: https://bitbucket.org/bos/llvm/