-
Notifications
You must be signed in to change notification settings - Fork 8
/
itanium-abi.cabal
47 lines (43 loc) · 1.56 KB
/
itanium-abi.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
-- Initial itanium-abi.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: itanium-abi
version: 0.1.2
synopsis: An implementation of name mangling/demangling for the Itanium ABI
license: BSD3
license-file: LICENSE
author: Tristan Ravitch
maintainer: tristan@ravit.ch
category: Development
build-type: Simple
cabal-version: >=1.10
tested-with: GHC == 7.4.2, GHC == 7.6.3, GHC == 7.8.4, GHC == 7.10.3, GHC == 8.0.2, GHC == 8.2.2, GHC == 8.4.4
description: Currently supports everything in the standard but templates
and C++11. Support for these will be added. Includes a name
mangler, demangler, and pretty printer.
-- copyright:
extra-source-files: tests/test-cases.txt
extra-doc-files: CHANGELOG.md
library
default-language: Haskell2010
hs-source-dirs: src
ghc-options: -Wall
build-depends: base >= 4 && < 5,
boomerang >= 1.4.5.6 && < 1.5,
exceptions >= 0.10 && < 0.11,
text >= 0.11 && < 2.1,
transformers,
unordered-containers >= 0.2.3.0 && < 0.3
exposed-modules: ABI.Itanium
other-modules: ABI.Itanium.Types,
ABI.Itanium.Pretty
test-suite DemangleTests
default-language: Haskell2010
hs-source-dirs: tests
type: exitcode-stdio-1.0
main-is: DemangleTests.hs
build-depends: itanium-abi, base > 3 && < 5, process,
test-framework, test-framework-hunit, HUnit
ghc-options: -Wall
source-repository head
type: git
location: https://github.com/travitch/itanium-abi