forked from ARM-software/asl-interpreter
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This avoids a run-time dependency on libz3.so, which tends to require fiddling with LD_LIBRARY_PATH. Need to pass the flags "-cclib -lstdc++" at compile time, though, as dune for some reason doesn't pick those up from the z3 package manifest (see https://stackoverflow.com/a/56853556).
- Loading branch information
Showing
4 changed files
with
5 additions
and
2 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 |
---|---|---|
|
@@ -21,7 +21,7 @@ | |
"linenoise" | ||
"pprint" | ||
"zarith" | ||
("z3" (<= "4.7.1")) | ||
("z3" (>= "4.8.4")) | ||
("alcotest" :with-test) | ||
) | ||
) | ||
|
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 |
---|---|---|
@@ -1,3 +1,4 @@ | ||
(test (name test_asl) | ||
(modes exe) | ||
(flags (-cclib -lstdc++)) | ||
(libraries alcotest libASL)) |