-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CHANGES: Update [Bitwuzla](https://github.com/bitwuzla/bitwuzla/releases/tag/0.6.0) sources. Fix a segmentation fault that occurs during the garbage collection of node managers. Vendor submodules: - [Bitwuzla](https://github.com/bitwuzla/bitwuzla) tag:0.6.0
- Loading branch information
Showing
1 changed file
with
50 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,50 @@ | ||
opam-version: "2.0" | ||
synopsis: "SMT solver for AUFBVFP (C++ API)" | ||
description: """ | ||
|
||
OCaml binding for the SMT solver Bitwuzla C++ API. | ||
|
||
Bitwuzla is a Satisfiability Modulo Theories (SMT) solver for the theories of fixed-size bit-vectors, arrays and uninterpreted functions and their combinations. Its name is derived from an Austrian dialect expression that can be translated as “someone who tinkers with bits”.""" | ||
maintainer: ["Frédéric Recoules <[email protected]>"] | ||
authors: ["Frédéric Recoules"] | ||
license: "MIT" | ||
tags: ["SMT solver" "AUFBVFP"] | ||
homepage: "https://bitwuzla.github.io" | ||
doc: "https://bitwuzla.github.io/docs/ocaml/" | ||
bug-reports: "https://github.com/bitwuzla/ocaml-bitwuzla/issues" | ||
depends: [ | ||
"dune" {>= "3.7"} | ||
"ocaml" {>= "4.12"} | ||
"conf-git" {build} | ||
"conf-gcc" {build} | ||
"conf-g++" {build} | ||
"zarith" | ||
"ppx_inline_test" {with-test & >= "v0.13"} | ||
"ppx_expect" {with-test & >= "v0.13"} | ||
"odoc" {with-doc} | ||
] | ||
build: [ | ||
["dune" "subst"] {dev} | ||
[ | ||
"dune" | ||
"build" | ||
"-p" | ||
name | ||
"-j" | ||
jobs | ||
"@install" | ||
"@runtest" {with-test} | ||
"@doc" {with-doc} | ||
] | ||
] | ||
dev-repo: "git+https://github.com/bitwuzla/ocaml-bitwuzla.git" | ||
available: [ os = "linux" & (os-distribution != "ol" & os-distribution != "centos" | os-version >= 8) | os = "macos" & os-distribution = "homebrew" ] | ||
url { | ||
src: | ||
"https://github.com/bitwuzla/ocaml-bitwuzla/releases/download/0.6.0/bitwuzla-cxx-0.6.0.tbz" | ||
checksum: [ | ||
"sha256=c54cc9f6a597dccb64ff51b6de0170d472a9a355791048f6afc4edbf1a155138" | ||
"sha512=74f2daac557c788ea517eb9431329917a0a23bb75b19e661c6cebb34bfcc30982457ce9c749d6995013a970198890b0e2463134ae2e6b5aa4592c79d85ab39e2" | ||
] | ||
} | ||
x-commit-hash: "7e027f4ada75fbf60eb90148c3dbf779236cc68d" |