forked from GaloisInc/ivory
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #10 from distrap/srk/chores
More chores
- Loading branch information
Showing
65 changed files
with
200 additions
and
333 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
package ivory | ||
ghc-options: -Wall -Werror -Wunused-packages | ||
|
||
package ivory-artifact | ||
ghc-options: -Wall -Werror -Wunused-packages | ||
|
||
package ivory-backend-c | ||
ghc-options: -Wall -Werror -Wunused-packages | ||
|
||
package ivory-eval | ||
ghc-options: -Wall -Werror -Wunused-packages | ||
|
||
package ivory-examples | ||
ghc-options: -Wall -Werror -Wunused-packages | ||
|
||
package ivory-hw | ||
ghc-options: -Wall -Werror -Wunused-packages | ||
|
||
package ivory-model-check | ||
ghc-options: -Wall -Werror -Wunused-packages | ||
|
||
package ivory-opts | ||
ghc-options: -Wall -Werror -Wunused-packages | ||
|
||
package ivory-quickcheck | ||
ghc-options: -Wall -Werror -Wunused-packages | ||
|
||
package ivory-serialize | ||
ghc-options: -Wall -Werror -Wunused-packages | ||
|
||
package ivory-stdlib | ||
ghc-options: -Wall -Werror -Wunused-packages | ||
|
||
package ivory-tasty | ||
ghc-options: -Wall -Werror -Wunused-packages |
This file was deleted.
Oops, something went wrong.
Empty file.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
cabal-version: 2.2 | ||
name: ivory-artifact | ||
synopsis: Manage additional data files during Ivory compilation. | ||
description: Mostly used by other Ivory libraries and backends and typically shouldn't have to be used directly by the user. | ||
|
@@ -7,12 +8,11 @@ maintainer: [email protected] | |
category: Language | ||
homepage: http://ivorylang.org | ||
build-type: Simple | ||
cabal-version: >= 1.10 | ||
license: BSD3 | ||
license: BSD-3-Clause | ||
license-file: LICENSE | ||
source-repository this | ||
type: git | ||
location: https://github.com/GaloisInc/ivory | ||
location: https://github.com/distrap/ivory | ||
tag: hackage-0.1.0.4 | ||
|
||
library | ||
|
@@ -24,7 +24,6 @@ library | |
filepath, | ||
directory, | ||
text, | ||
utf8-string, | ||
HStringTemplate | ||
hs-source-dirs: src | ||
default-language: Haskell2010 | ||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 0 additions & 8 deletions
8
ivory-backend-c/src/Ivory/Compile/C/CmdlineFrontend/Options.hs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,24 @@ | ||
cabal-version: 2.2 | ||
name: ivory-eval | ||
version: 0.1.0.6 | ||
author: Galois, Inc. | ||
copyright: 2014 Galois, Inc. | ||
maintainer: [email protected] | ||
category: Testing | ||
build-type: Simple | ||
cabal-version: >= 1.10 | ||
synopsis: Simple concrete evaluator for Ivory programs | ||
description: Warning! This module is experimental and its implementation may change dramatically. | ||
homepage: http://ivorylang.org | ||
license: BSD3 | ||
license: BSD-3-Clause | ||
license-file: LICENSE | ||
source-repository head | ||
type: git | ||
location: https://github.com/GaloisInc/ivory | ||
location: https://github.com/distrap/ivory | ||
tag: hackage-0.1.0.4 | ||
|
||
library | ||
exposed-modules: Ivory.Eval | ||
build-depends: base >= 4.6 && < 5, | ||
base-compat, | ||
containers, | ||
monadLib, | ||
ivory | ||
|
@@ -34,11 +33,9 @@ test-suite test | |
ghc-options: -Wall | ||
|
||
build-depends: base >= 4.7 && < 5 | ||
, base-compat | ||
, containers | ||
, tasty >= 0.10 | ||
, tasty-hunit | ||
, monadLib | ||
, ivory | ||
, ivory-eval | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.