-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathlion-formal.cabal
47 lines (45 loc) · 1.32 KB
/
lion-formal.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
cabal-version: 2.4
name: lion-formal
version: 0.1.0.0
synopsis: Lion formal verification
description: Formal verification using riscv-formal.
bug-reports: https://github.com/standardsemiconductor/lion/issues
license: BSD-3-Clause
author: dopamane
maintainer: dopamane <[email protected]>
copyright: (c) 2021-2023 David Cox
category: Hardware
extra-source-files: CHANGELOG.md
library
exposed-modules: LionFV
hs-source-dirs: src
default-language: Haskell2010
build-depends:
base >= 4.13 && < 4.21,
clash-prelude >= 1.4 && < 1.9,
lion >= 0.4 && < 0.5,
ghc-typelits-natnormalise,
ghc-typelits-extra,
ghc-typelits-knownnat
ghc-options:
-Wall -Werror -Wcompat
-haddock
-fplugin GHC.TypeLits.Extra.Solver
-fplugin GHC.TypeLits.Normalise
-fplugin GHC.TypeLits.KnownNat.Solver
-fexpose-all-unfoldings
-fno-worker-wrapper
default-extensions:
DataKinds
LambdaCase
NoImplicitPrelude
TemplateHaskell
TypeOperators
executable formal
main-is: Main.hs
build-depends: base
, clash-ghc
, directory
, shake
hs-source-dirs: app
default-language: Haskell2010