notbugAs an Amazon Associate I earn from qualifying purchases.
Want a good read? Try FreeBSD Mastery: Jails (IT Mastery Book 15)
Want a good monitor light? See my photosAll times are UTC
Ukraine
Port details on branch 2024Q3
z3 Z3 Theorem Prover
4.13.0 math on this many watch lists=0 search for ports that depend on this port Find issues related to this port Report an issue related to this port View this port on Repology. pkg-fallout 4.13.0Version of this port present on the latest quarterly branch.
Maintainer: arrowd@FreeBSD.org search for ports maintained by this maintainer
Port Added: 2024-09-15 12:09:04
Last Update: 2024-09-15 12:08:13
Commit Hash: 1168d8b
License: MIT
WWW:
https://github.com/Z3Prover/z3
Description:
Z3 is a high-performance theorem prover developed at Microsoft Research.
Homepage    cgit ¦ Codeberg ¦ GitHub ¦ GitLab ¦ SVNWeb - no subversion history for this port

Manual pages:
FreshPorts has no man page information for this port.
pkg-plist: as obtained via: make generate-plist
Expand this list (29 items)
Collapse this list.
  1. /usr/local/share/licenses/z3-4.13.0/catalog.mk
  2. /usr/local/share/licenses/z3-4.13.0/LICENSE
  3. /usr/local/share/licenses/z3-4.13.0/MIT
  4. bin/z3
  5. include/z3++.h
  6. include/z3.h
  7. include/z3_algebraic.h
  8. include/z3_api.h
  9. include/z3_ast_containers.h
  10. include/z3_fixedpoint.h
  11. include/z3_fpa.h
  12. include/z3_macros.h
  13. include/z3_optimization.h
  14. include/z3_polynomial.h
  15. include/z3_rcf.h
  16. include/z3_spacer.h
  17. include/z3_v1.h
  18. include/z3_version.h
  19. lib/cmake/z3/Z3Config.cmake
  20. lib/cmake/z3/Z3ConfigVersion.cmake
  21. lib/cmake/z3/Z3Targets-release.cmake
  22. lib/cmake/z3/Z3Targets.cmake
  23. lib/libz3.so
  24. lib/libz3.so.4.13
  25. lib/libz3.so.4.13.0.0
  26. libdata/pkgconfig/z3.pc
  27. @owner
  28. @group
  29. @mode
Collapse this list.
Dependency lines:
  • z3>0:math/z3
To install the port:
cd /usr/ports/math/z3/ && make install clean
To add the package, run one of these commands:
  • pkg install math/z3
  • pkg install z3
NOTE: If this package has multiple flavors (see below), then use one of them instead of the name specified above.
PKGNAME: z3
Flavors: there is no flavor information for this port.
distinfo:
TIMESTAMP = 1713421143 SHA256 (Z3Prover-z3-z3-4.13.0_GH0.tar.gz) = 01bcc61c8362e37bb89fd2430f7e3385e86df7915019bd2ce45de9d9bd934502 SIZE (Z3Prover-z3-z3-4.13.0_GH0.tar.gz) = 5520232

No package information for this port in our database
Sometimes this happens. Not all ports have packages. Perhaps there is a build error. Check the fallout link: pkg-fallout
Dependencies
NOTE: FreshPorts displays only information on required and default dependencies. Optional dependencies are not covered.
Build dependencies:
  1. cmake : devel/cmake-core
  2. ninja : devel/ninja
There are no ports dependent upon this port

Configuration Options:
===> The following configuration options are available for z3-4.13.0: GMP=off: Use GMP library for AP arithmetic ===> Use 'make config' to modify these settings
Options name:
math_z3
USES:
cmake compiler:c++11-lang localbase:ldflags
FreshPorts was unable to extract/find any pkg message
Master Sites:
Expand this list (1 items)
Collapse this list.
  1. https://codeload.github.com/Z3Prover/z3/tar.gz/z3-4.13.0?dummy=/
Collapse this list.

Number of commits found: 1

Commit History - (may be incomplete: for full details, see links to repositories near top of page)
CommitCreditsLog message
4.13.0
15 Sep 2024 12:08:13
commit hash: 1168d8b84975a1fde55bd7f25a97970268542a73commit hash: 1168d8b84975a1fde55bd7f25a97970268542a73commit hash: 1168d8b84975a1fde55bd7f25a97970268542a73commit hash: 1168d8b84975a1fde55bd7f25a97970268542a73 files touched by this commit
Gleb Popov (arrowd) search for other commits by this committer
Author: Dimitry Andric
math/z3: fix build with clang 19

Clang 19 has become more strict about errors in member functions, which
results in:

/wrkdirs/usr/ports/math/z3/work/z3-z3-4.13.0/src/math/lp/static_matrix.h:82:72:
error: no member named 'get' in 'static_matrix<T, X>'; did you mean 'set'?
 82 |         ref operator=(ref & v) { m_matrix.set(m_row, m_col,
v.m_matrix.get(v.m_row, v.m_col)); return *this; }
    |                                                                        ^~~
    |                                                                        set
/wrkdirs/usr/ports/math/z3/work/z3-z3-4.13.0/src/math/lp/static_matrix.h:164:10:
note: 'set' declared here
164 |     void set(unsigned row, unsigned col, T const & val);
    |          ^

Upstream fixed this as part of a few other changes for gcc 15 in
<https://github.com/Z3Prover/z3/commit/2ce89e5f4>, but it does not apply
cleanly to this version, so add a backported patch.

PR:		281512
MFH:		2024Q3
(cherry picked from commit 88af7aa2d01a15a3d77380bf590921e04996ef45)

Number of commits found: 1