-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The only other changes required are (1) deleting an unused dependency on `what4-serialize`, and (2) raising upper version bounds on `what4`. This brings in submodule changes from the following: * GaloisInc/asl-translator#48, which performed a similar `what4` adaptation. * GaloisInc/semmc#78, which performed a similar `what4` adaptation. * GaloisIns/crucible#1068, which ensures that everything can build against `tasty-sugar >= 2.0` (the version of the library that `what4-1.4` depends on).
- Loading branch information
1 parent
88d0249
commit e6a3fb0
Showing
9 changed files
with
6 additions
and
11 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,9 +31,6 @@ | |
[submodule "deps/arm-asl-parser"] | ||
path = deps/arm-asl-parser | ||
url = https://github.com/GaloisInc/arm-asl-parser.git | ||
[submodule "deps/what4-serialize"] | ||
path = deps/what4-serialize | ||
url = https://github.com/GaloisInc/what4-serialize.git | ||
[submodule "deps/what4"] | ||
path = deps/what4 | ||
url = [email protected]:GaloisInc/what4.git | ||
|
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
Submodule asl-translator
updated
17 files
+0 −3 | .gitmodules | |
+3 −4 | asl-translator.cabal | |
+0 −1 | cabal.project.newbuild | |
+16 −16 | docs/DESIGN.md | |
+1 −1 | exe/Concrete.hs | |
+1 −1 | exe/Main.hs | |
+11 −0 | lib/Data/Parameterized/SomeSome.hs | |
+1 −1 | lib/Language/ASL/Crucible.hs | |
+1 −1 | lib/Language/ASL/Formulas.hs | |
+1 −1 | lib/Language/ASL/Formulas/Normalize.hs | |
+3 −3 | lib/Language/ASL/Formulas/Serialize.hs | |
+2 −2 | lib/Language/ASL/Translation.hs | |
+5 −4 | lib/Language/ASL/Translation/Driver.hs | |
+1 −1 | lib/Util/Log.hs | |
+1 −1 | submodules/what4 | |
+0 −1 | submodules/what4-serialize | |
+1 −1 | tests/Translation/Main.hs |
Submodule semmc
updated
15 files
+0 −3 | .gitmodules | |
+89 −90 | cabal.GHC-8.10.7.config | |
+90 −91 | cabal.GHC-8.8.4.config | |
+87 −90 | cabal.GHC-9.0.2.config | |
+87 −90 | cabal.GHC-9.2.2.config | |
+0 −1 | cabal.project.newbuild | |
+1 −2 | semmc-aarch32/semmc-aarch32.cabal | |
+5 −5 | semmc-aarch32/src/SemMC/Architecture/ARM/ASL.hs | |
+1 −3 | semmc/semmc.cabal | |
+1 −2 | semmc/src/SemMC/Formula/Parser.hs | |
+8 −9 | semmc/src/SemMC/Formula/Printer.hs | |
+1 −1 | submodules/asl-translator | |
+1 −1 | submodules/crucible | |
+1 −1 | submodules/what4 | |
+0 −1 | submodules/what4-serialize |
Submodule what4
updated
53 files
Submodule what4-serialize
deleted from
d8b3fa
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 |
---|---|---|
|
@@ -27,7 +27,7 @@ library | |
text, | ||
vector, | ||
bytestring, | ||
what4 >= 1.1 && < 1.4 | ||
what4 >= 1.1 && < 1.5 | ||
|
||
hs-source-dirs: src | ||
|
||
|