Skip to content

relax the z3 constraint #1568

Open
Open
@ivg

Description

@ivg

We introduced a constraint on z3 after it has switched the linking mode from static to dynamic. We require the statically linked z3 to build self-contained binary packages, so the easy solution at the time was constraining the version of z3. However, we no longer can survive with the outdated version (especially since we need a newer version of z3 to work with OCaml 5.0, so this issue blocks #1561).

Besides, BAP works fine with either variant of z3 (static or dynamic) so if you want to rebuild bap with the later z3 (assuming you have already bap installed and want to update z3), you can use --ignore-constraints-on, e.g.,

opam install z3=4.8.17 --ignore-constraints-on=z3

And if you're building bap from sources and install bap dependencies with opam install . --deps-only then you can avoid building z3 twice using the following trick:

  1. before installing bap dependencies, install z3 of the desired version, e.g.,
opam install z3=4.8.17
  1. next, use the --ignore-constraints-on=z3 to drop it from the formula and install the dependencies,
 opam install . --deps-only --ignore-constraints-on=z3

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions