2017-07-08 00:18:35 +03:00
|
|
|
name: macaw-symbolic
|
|
|
|
version: 0.0.1
|
|
|
|
author: Galois, Inc.
|
|
|
|
maintainer: jhendrix@galois.com
|
|
|
|
build-type: Simple
|
2019-02-27 22:52:18 +03:00
|
|
|
cabal-version: >= 1.10
|
2017-09-28 01:59:06 +03:00
|
|
|
license: BSD3
|
|
|
|
license-file: LICENSE
|
2017-07-08 00:18:35 +03:00
|
|
|
|
|
|
|
library
|
|
|
|
build-depends:
|
2017-12-02 00:58:20 +03:00
|
|
|
base >= 4,
|
2018-01-09 21:40:14 +03:00
|
|
|
ansi-wl-pprint,
|
2017-12-02 00:58:20 +03:00
|
|
|
containers,
|
2019-01-11 05:10:30 +03:00
|
|
|
IntervalMap >= 0.6 && < 0.7,
|
2018-06-06 21:48:45 +03:00
|
|
|
crucible >= 0.4,
|
|
|
|
crucible-llvm,
|
2017-12-02 00:58:20 +03:00
|
|
|
lens,
|
|
|
|
macaw-base,
|
|
|
|
mtl,
|
|
|
|
parameterized-utils,
|
2018-02-07 03:47:13 +03:00
|
|
|
text,
|
2019-01-11 05:10:30 +03:00
|
|
|
vector,
|
|
|
|
bytestring,
|
2018-06-06 21:48:45 +03:00
|
|
|
what4 >= 0.4.0
|
2017-07-08 00:18:35 +03:00
|
|
|
|
|
|
|
hs-source-dirs: src
|
|
|
|
|
|
|
|
exposed-modules:
|
2019-01-11 05:10:30 +03:00
|
|
|
Data.Macaw.Symbolic
|
|
|
|
Data.Macaw.Symbolic.Backend
|
|
|
|
Data.Macaw.Symbolic.Memory
|
|
|
|
other-modules:
|
2018-01-03 04:31:42 +03:00
|
|
|
Data.Macaw.Symbolic.CrucGen
|
2017-10-03 00:40:14 +03:00
|
|
|
Data.Macaw.Symbolic.PersistentState
|
2018-02-09 22:41:39 +03:00
|
|
|
Data.Macaw.Symbolic.MemOps
|
2017-07-08 00:18:35 +03:00
|
|
|
|
2019-01-11 00:43:27 +03:00
|
|
|
ghc-options: -Wall -Wcompat
|
2018-02-07 03:47:13 +03:00
|
|
|
ghc-prof-options: -O2 -fprof-auto-top
|
2019-02-27 22:52:18 +03:00
|
|
|
default-language: Haskell2010
|
2019-02-27 20:30:26 +03:00
|
|
|
|
|
|
|
if impl(ghc >= 8.6)
|
|
|
|
default-extensions: NoStarIsType
|